File tree Expand file tree Collapse file tree 4 files changed +5
-9
lines changed Expand file tree Collapse file tree 4 files changed +5
-9
lines changed Original file line number Diff line number Diff line change 13
13
ref : ${{ github.head_ref }}
14
14
15
15
- name : Run PHP CS Fixer
16
- uses : docker://oskarstark/php-cs-fixer-ga
17
- with :
18
- args : --config=.php_cs.dist.php --allow-risky=yes
16
+
19
17
20
18
- name : Commit changes
21
19
uses : stefanzweifel/git-auto-commit-action@v5
Original file line number Diff line number Diff line change @@ -38,7 +38,7 @@ public function handle(): int
38
38
39
39
protected function phpBinary (): string
40
40
{
41
- return (new PhpExecutableFinder () )->find (false ) ?: 'php ' ;
41
+ return (new PhpExecutableFinder )->find (false ) ?: 'php ' ;
42
42
}
43
43
44
44
private function ensureTailwindConfigExists (): void
@@ -111,7 +111,7 @@ private function appendTailwindStylesToLayouts(): void
111
111
$ this ->existingLayoutFiles ()
112
112
->each (fn ($ file ) => File::put (
113
113
$ file ,
114
- (new AppendTailwindTag () )(File::get ($ file )),
114
+ (new AppendTailwindTag )(File::get ($ file )),
115
115
));
116
116
}
117
117
Original file line number Diff line number Diff line change 6
6
7
7
class AddLinkHeaderForPreloadedAssets
8
8
{
9
- public function __construct (private readonly Manifest $ manifest )
10
- {
11
- }
9
+ public function __construct (private readonly Manifest $ manifest ) {}
12
10
13
11
public function handle ($ request , $ next )
14
12
{
Original file line number Diff line number Diff line change @@ -40,6 +40,6 @@ public function append_tailwind_tag_before_closing_head_tag(): void
40
40
</html>
41
41
BLADE;
42
42
43
- $ this ->assertEquals ($ expected , (new AppendTailwindTag () )($ contents ));
43
+ $ this ->assertEquals ($ expected , (new AppendTailwindTag )($ contents ));
44
44
}
45
45
}
You can’t perform that action at this time.
0 commit comments