@@ -1,4 +1,4 @@ |
||
1 | -<?php declare(strict_types=1); |
|
1 | +<?php declare(strict_types = 1); |
|
2 | 2 | |
3 | 3 | namespace Simplex\Quickstart\Shared\Testing; |
4 | 4 |
@@ -1,4 +1,4 @@ |
||
1 | -<?php declare(strict_types=1); |
|
1 | +<?php declare(strict_types = 1); |
|
2 | 2 | |
3 | 3 | namespace Simplex\Quickstart\Shared\Factory; |
4 | 4 |
@@ -1,4 +1,4 @@ |
||
1 | -<?php declare(strict_types=1); |
|
1 | +<?php declare(strict_types = 1); |
|
2 | 2 | |
3 | 3 | namespace Simplex\Quickstart\Shared\Factory; |
4 | 4 |
@@ -1,4 +1,4 @@ |
||
1 | -<?php declare(strict_types=1); |
|
1 | +<?php declare(strict_types = 1); |
|
2 | 2 | |
3 | 3 | namespace Simplex\Quickstart\Shared\Factory; |
4 | 4 |
@@ -92,7 +92,7 @@ |
||
92 | 92 | ->parameter('cacheDir', DI\get('cache_dir')) |
93 | 93 | ->parameter('debugMode', DI\get('debug_mode')), |
94 | 94 | |
95 | - 'console_helper_set' => function (ContainerInterface $c) { |
|
95 | + 'console_helper_set' => function(ContainerInterface $c) { |
|
96 | 96 | $ormHelperSet = ConsoleRunner::createHelperSet($c->get(EntityManager::class)); |
97 | 97 | return $ormHelperSet; |
98 | 98 | }, |
@@ -1,4 +1,4 @@ |
||
1 | -<?php declare(strict_types=1); |
|
1 | +<?php declare(strict_types = 1); |
|
2 | 2 | |
3 | 3 | namespace Simplex\Quickstart\Shared\Controller; |
4 | 4 |
@@ -7,7 +7,7 @@ |
||
7 | 7 | use Zend\Diactoros\Response\SapiEmitter; |
8 | 8 | use Zend\Diactoros\Response; |
9 | 9 | |
10 | -$loader = require __DIR__.'/../vendor/autoload.php'; |
|
10 | +$loader = require __DIR__ . '/../vendor/autoload.php'; |
|
11 | 11 | AnnotationRegistry::registerLoader([$loader, 'loadClass']); |
12 | 12 | |
13 | 13 | $request = ServerRequestFactory::fromGlobals( |