Skip to content

Commit 86611db

Browse files
committed
Fix CS errors
1 parent 5c46c66 commit 86611db

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/Application.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ public function bootstrap(): void
5151
if (PHP_SAPI !== 'cli') {
5252
FactoryLocator::add(
5353
'Table',
54-
(new TableLocator())->allowFallbackClass(false)
54+
(new TableLocator())->allowFallbackClass(false),
5555
);
5656
}
5757
}

src/Console/Installer.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ public static function setFolderPermissions(string $dir, IOInterface $io): void
130130
'<info>Set Folder Permissions ? (Default to Y)</info> [<comment>Y,n</comment>]? ',
131131
$validator,
132132
10,
133-
'Y'
133+
'Y',
134134
);
135135

136136
if (in_array($setFolderPermissions, ['n', 'N'])) {

0 commit comments

Comments
 (0)