Skip to content

Commit e1d0165

Browse files
committed
new phpcs rules
1 parent b3a981d commit e1d0165

File tree

7 files changed

+7
-11
lines changed

7 files changed

+7
-11
lines changed

src/Breakpoints/Breakpoints.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ private function getFromPico(): self
6565
return $this;
6666
}
6767

68-
$this->breakpoints = collect((new PicoParser())->parse() ?? []);
68+
$this->breakpoints = collect((new PicoParser)->parse() ?? []);
6969

7070
return $this;
7171
}

src/Breakpoints/Parser/BootstrapParser.php

+1-2
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,7 @@ class BootstrapParser
1717

1818
public function __construct(
1919
protected array $files,
20-
) {
21-
}
20+
) {}
2221

2322
public function parse(): ?array
2423
{

src/Breakpoints/Parser/TailwindParser.php

+1-2
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,7 @@ class TailwindParser
2121

2222
public function __construct(
2323
protected array $files,
24-
) {
25-
}
24+
) {}
2625

2726
public function parse(): ?array
2827
{

src/Controllers/ToolbarController.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ protected function getBreakpoints(): ?array
6565
return null;
6666
}
6767

68-
return (new Breakpoints())->toArray();
68+
return (new Breakpoints)->toArray();
6969
}
7070

7171
protected function getSite(): ?string

src/Middleware/InjectToolbar.php

+1-2
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,7 @@ class InjectToolbar
1010
{
1111
public function __construct(
1212
protected Toolbar $toolbar,
13-
) {
14-
}
13+
) {}
1514

1615
public function handle($request, Closure $next)
1716
{

src/Middleware/ToolbarEnabled.php

+1-2
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,7 @@ class ToolbarEnabled
99
{
1010
public function __construct(
1111
protected Toolbar $toolbar,
12-
) {
13-
}
12+
) {}
1413

1514
public function handle($request, Closure $next)
1615
{

tests/Feature/PicoBreakpointsTest.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
use Heidkaemper\Toolbar\Breakpoints\Parser\PicoParser;
44

55
beforeEach(function () {
6-
$this->parser = new PicoParser();
6+
$this->parser = new PicoParser;
77

88
if (! file_exists(public_path('css'))) {
99
mkdir(public_path('css'));

0 commit comments

Comments
 (0)