Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
Signed-off-by: Mior Muhammad Zaki <crynobone@gmail.com>
  • Loading branch information
crynobone committed Nov 12, 2024
1 parent 239509d commit 1ad01ce
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions tests/Concerns/UsesGeneratorOverridesTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ class UsesGeneratorOverridesTest extends TestCase
*/
protected function setUp(): void
{
$filesystem = new Filesystem();
$filesystem = new Filesystem;

$this->afterApplicationCreated(static function () use ($filesystem) {
$filesystem->ensureDirectoryExists(join_paths(base_path('app'), 'Events'));
Expand All @@ -37,7 +37,7 @@ protected function setUp(): void
#[Test]
public function it_can_get_qualify_model_class()
{
$stub = new UsesGeneratorOverridesTestStub();
$stub = new UsesGeneratorOverridesTestStub;

$this->assertSame([
'user-model' => 'App\Models\User',
Expand Down
2 changes: 1 addition & 1 deletion tests/Presets/LaravelPresetTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ class LaravelPresetTest extends TestCase
*/
protected function setUp(): void
{
$filesystem = new Filesystem();
$filesystem = new Filesystem;

$this->afterApplicationCreated(static function () use ($filesystem) {
$filesystem->ensureDirectoryExists(join_paths(base_path('app'), 'Events'));
Expand Down

0 comments on commit 1ad01ce

Please sign in to comment.