Skip to content

Commit d147485

Browse files
GrahamCampbellStyleCIBot
authored andcommitted
Applied fixes from StyleCI
1 parent 02edce9 commit d147485

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

tests/FullApplicationTest.php

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -464,18 +464,22 @@ public function handle($request, $next, $parameter1, $parameter2)
464464
class LumenTestController
465465
{
466466
public $service;
467+
467468
public function __construct(LumenTestService $service)
468469
{
469470
$this->service = $service;
470471
}
472+
471473
public function action()
472474
{
473475
return response(__CLASS__);
474476
}
477+
475478
public function actionWithParameter($baz)
476479
{
477480
return response($baz);
478481
}
482+
479483
public function actionWithDefaultParameter($baz = 'default-value')
480484
{
481485
return response($baz);

0 commit comments

Comments
 (0)