diff --git a/tests/CrudMakeClassPropertiesTest.php b/tests/CrudMakeClassPropertiesTest.php index 00d4a1c..afe12f7 100644 --- a/tests/CrudMakeClassPropertiesTest.php +++ b/tests/CrudMakeClassPropertiesTest.php @@ -6,7 +6,7 @@ use Luthfi\CrudGenerator\CrudMake; class CrudMakeClassPropertiesTest extends TestCase { - public function setUp() + public function setUp(): void { parent::setUp(); $this->crudMaker = app(CrudMake::class); diff --git a/tests/TestCase.php b/tests/TestCase.php index 1972e6c..8c55a86 100644 --- a/tests/TestCase.php +++ b/tests/TestCase.php @@ -14,7 +14,7 @@ abstract class TestCase extends BaseTestCase protected $collection_model_var_name; protected $single_model_var_name; - public function setUp() + public function setUp(): void { parent::setUp(); $this->model_name = 'MemberType'; @@ -27,7 +27,7 @@ abstract class TestCase extends BaseTestCase $this->single_model_var_name = camel_case($this->model_name); } - public function tearDown() + public function tearDown(): void { $this->cleanUpGeneratedFiles();