Skip to content

Commit 11c2531

Browse files
lorisleivagithub-actions[bot]
authored andcommitted
Fix styling
1 parent 3167dc8 commit 11c2531

File tree

1 file changed

+12
-4
lines changed

1 file changed

+12
-4
lines changed

tests/DecorateActionsTest.php

Lines changed: 12 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,20 @@
44

55
beforeEach(function () {
66
$this->request = new class extends ActionRequest {
7-
public function authorize(): bool { return true; }
8-
public function rules(): array { return []; }
9-
public function handle() { /* no-op */ }
7+
public function authorize(): bool
8+
{
9+
return true;
10+
}
11+
public function rules(): array
12+
{
13+
return [];
14+
}
15+
public function handle()
16+
{ /* no-op */
17+
}
1018
};
1119

12-
$method = new \ReflectionMethod($this->request, 'hasMethod');
20+
$method = new \ReflectionMethod($this->request, 'hasMethod');
1321
$method->setAccessible(true);
1422
$this->hasMethod = $method;
1523
});

0 commit comments

Comments
 (0)