1
0
Fork 0
mirror of synced 2024-09-30 09:18:14 +13:00

Update FileTypeTest.php

This commit is contained in:
Mou Ikkai 2020-09-30 17:55:42 -04:00 committed by GitHub
parent 3e6e8dcd16
commit 583df1f5f2
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -12,12 +12,12 @@ class FileTypeTest extends TestCase
*/ */
protected $object = null; protected $object = null;
public function setUp() public function setUp(): void
{ {
$this->object = new FileType([FileType::FILE_TYPE_JPEG]); $this->object = new FileType([FileType::FILE_TYPE_JPEG]);
} }
public function tearDown() public function tearDown(): void
{ {
} }