Skip to content

Commit 0742fe0

Browse files
committed
Apply fixes from StyleCI
1 parent a2685ee commit 0742fe0

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

tests/UrlGeneratorTest.php

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,8 @@ class UrlGeneratorTest extends TestCase
1010
{
1111
public function testGenerate()
1212
{
13-
$urlGenerator = new UrlGenerator(new class extends AbstractAction {
13+
$urlGenerator = new UrlGenerator(new class extends AbstractAction
14+
{
1415
public function getEndpoint(): string
1516
{
1617
return 'search/';
@@ -33,7 +34,8 @@ public function getParameters(): array
3334

3435
public function testSetAction()
3536
{
36-
$urlGenerator = new UrlGenerator(new class extends AbstractAction {
37+
$urlGenerator = new UrlGenerator(new class extends AbstractAction
38+
{
3739
public function getEndpoint(): string
3840
{
3941
return 'endpoint/';
@@ -52,7 +54,8 @@ public function getParameters(): array
5254
$urlGenerator->generate()
5355
);
5456

55-
$urlGenerator->setAction(new class extends AbstractAction {
57+
$urlGenerator->setAction(new class extends AbstractAction
58+
{
5659
public function getEndpoint(): string
5760
{
5861
return 'endpoint/';

0 commit comments

Comments
 (0)