Skip to content
This repository was archived by the owner on Feb 14, 2026. It is now read-only.

Commit d5178bf

Browse files
committed
Pint
1 parent 261e9cc commit d5178bf

File tree

2 files changed

+10
-10
lines changed

2 files changed

+10
-10
lines changed

rector.php

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -3,18 +3,18 @@
33
declare(strict_types=1);
44

55
use Rector\Config\RectorConfig;
6-
use Rector\Set\ValueObject\LevelSetList;
7-
use Rector\Set\ValueObject\SetList;
6+
use Rector\Set\ValueObject\LevelSetList;
7+
use Rector\Set\ValueObject\SetList;
88

9-
return RectorConfig::configure()
9+
return RectorConfig::configure()
1010
->withPaths([
11-
__DIR__ . '/config',
12-
__DIR__ . '/resources',
13-
__DIR__ . '/src',
11+
__DIR__.'/config',
12+
__DIR__.'/resources',
13+
__DIR__.'/src',
1414
])
15-
// uncomment to reach your current PHP version
16-
// ->withPhpSets()
17-
->withSets([
15+
// uncomment to reach your current PHP version
16+
// ->withPhpSets()
17+
->withSets([
1818
LevelSetList::UP_TO_PHP_82,
1919
SetList::CODE_QUALITY,
2020
SetList::DEAD_CODE,

src/Concerns/InteractsWithResources.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ public function getResourceTableActions(): array
5959

6060
public function getResourceTableVisibleActions(): array
6161
{
62-
return array_filter($this->getResourceTableActions(), fn(Action $action): bool => ! $this->getPrivateProperty($action, 'isHidden'));
62+
return array_filter($this->getResourceTableActions(), fn (Action $action): bool => ! $this->getPrivateProperty($action, 'isHidden'));
6363
}
6464

6565
public function getResourceSortableTableColumns(): array

0 commit comments

Comments
 (0)