Skip to content

Commit 1d2d2b3

Browse files
committed
Apply fixes from StyleCI
1 parent 14c0c0a commit 1d2d2b3

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

packages/framework/src/Framework/Services/DiscoveryService.php

+1
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@ class DiscoveryService
3232
* @param string<\Hyde\Pages\Concerns\HydePage> $model
3333
*
3434
* @throws \Hyde\Framework\Exceptions\UnsupportedPageTypeException
35+
*
3536
* @example DiscoveryService::getSourceFileListForModel(BladePage::class)
3637
*/
3738
public static function getSourceFileListForModel(string $model): array

rector.php

+5-6
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,11 @@
66
use Rector\Laravel\Set\LaravelSetList;
77

88
return static function (RectorConfig $rectorConfig): void {
9-
$rectorConfig->paths([__DIR__ . '/packages/framework/src']);
9+
$rectorConfig->paths([__DIR__.'/packages/framework/src']);
1010
$rectorConfig->sets([
11-
LaravelSetList::LARAVEL_90,
12-
\Rector\Set\ValueObject\SetList::PHP_80,
13-
\Rector\Set\ValueObject\SetList::PHP_81,
14-
]);
11+
LaravelSetList::LARAVEL_90,
12+
\Rector\Set\ValueObject\SetList::PHP_80,
13+
\Rector\Set\ValueObject\SetList::PHP_81,
14+
]);
1515
$rectorConfig->rule(Rector\Php80\Rector\Class_\ClassPropertyAssignToConstructorPromotionRector::class);
1616
};
17-

0 commit comments

Comments
 (0)