Skip to content

Commit 3aa28b3

Browse files
style: Apply fixes from StyleCI (#1013)
Co-authored-by: StyleCI Bot <[email protected]>
1 parent b574a32 commit 3aa28b3

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

src/Facades/FileUtils.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,10 @@ protected static function getFacadeAccessor()
1616
public static function fake()
1717
{
1818
$fake = Mockery::mock()->allows([
19-
'getFile' => '',
20-
'createFile' => true,
19+
'getFile' => '',
20+
'createFile' => true,
2121
'createDirectoryIfNotExist' => true,
22-
'deleteFile' => true,
22+
'deleteFile' => true,
2323
]);
2424

2525
static::swap($fake);

tests/Commands/APIScaffoldGeneratorCommandTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
use function Pest\Laravel\artisan;
2121

2222
beforeEach(function () {
23-
FileUtils::fake();
23+
FileUtils::fake();
2424
});
2525

2626
afterEach(function () {
@@ -99,4 +99,4 @@ function mockShouldNotHaveCalledGenerators(array $shouldNotHaveCalledGenerator):
9999
->expectsQuestion('Field: (name db_type html_type options)', 'exit')
100100
->expectsQuestion(PHP_EOL.'Do you want to migrate database? [y|N]', false)
101101
->assertSuccessful();
102-
});
102+
});

0 commit comments

Comments
 (0)