@@ -11,7 +11,7 @@ discard block |
||
11 | 11 | |
12 | 12 | // Decline static file requests back to the PHP built-in webserver |
13 | 13 | if (php_sapi_name() === 'cli-server') { |
14 | - $path = realpath(__DIR__ . parse_url($_SERVER['REQUEST_URI'], PHP_URL_PATH)); |
|
14 | + $path = realpath(__DIR__ . parse_url($_SERVER[ 'REQUEST_URI' ], PHP_URL_PATH)); |
|
15 | 15 | if (__FILE__ !== $path && is_file($path)) { |
16 | 16 | return false; |
17 | 17 | } |
@@ -21,7 +21,7 @@ discard block |
||
21 | 21 | // Composer autoloading |
22 | 22 | include __DIR__ . '/../vendor/autoload.php'; |
23 | 23 | |
24 | -if (! class_exists(Application::class)) { |
|
24 | +if (!class_exists(Application::class)) { |
|
25 | 25 | throw new RuntimeException( |
26 | 26 | "Unable to load application.\n" |
27 | 27 | . "- Type `composer install` if you are developing locally.\n" |
@@ -27,7 +27,7 @@ discard block |
||
27 | 27 | $events->attach( |
28 | 28 | 'doctrine', |
29 | 29 | 'loadCli.post', |
30 | - function (EventInterface $e) { |
|
30 | + function(EventInterface $e) { |
|
31 | 31 | /* @var $cli Application */ |
32 | 32 | $cli = $e->getTarget(); |
33 | 33 | |
@@ -38,7 +38,7 @@ discard block |
||
38 | 38 | |
39 | 39 | ConsoleRunner::addCommands($cli); |
40 | 40 | |
41 | - $cli->addCommands([new GenerateTraitCommand($em)]); |
|
41 | + $cli->addCommands([ new GenerateTraitCommand($em) ]); |
|
42 | 42 | } |
43 | 43 | ); |
44 | 44 | } |
@@ -1,2 +1,2 @@ |
||
1 | 1 | <?php |
2 | -return []; |
|
2 | +return [ ]; |
@@ -99,10 +99,10 @@ discard block |
||
99 | 99 | public function execute(InputInterface $input, OutputInterface $output) |
100 | 100 | { |
101 | 101 | /** @var string $traitName */ |
102 | - $traitName = (string)$input->getOption('className'); |
|
102 | + $traitName = (string) $input->getOption('className'); |
|
103 | 103 | |
104 | 104 | /** @var string $destination */ |
105 | - $destination = (string)$input->getOption('output'); |
|
105 | + $destination = (string) $input->getOption('output'); |
|
106 | 106 | |
107 | 107 | $outputFileName = sprintf( |
108 | 108 | '%s/%s.php', |
@@ -195,11 +195,11 @@ discard block |
||
195 | 195 | private function generateTrait(InputInterface $input): TraitGenerator |
196 | 196 | { |
197 | 197 | /** @var string $entityManagerGetter */ |
198 | - $entityManagerGetter = (string)$input->getOption('em-getter'); |
|
198 | + $entityManagerGetter = (string) $input->getOption('em-getter'); |
|
199 | 199 | /** @var string $traitName */ |
200 | - $traitName = (string)$input->getOption('className'); |
|
200 | + $traitName = (string) $input->getOption('className'); |
|
201 | 201 | /** @var string $traitNameSpace */ |
202 | - $traitNameSpace = (string)$input->getOption('namespace'); |
|
202 | + $traitNameSpace = (string) $input->getOption('namespace'); |
|
203 | 203 | |
204 | 204 | $trait = new TraitGenerator( |
205 | 205 | $traitName, |
@@ -257,7 +257,7 @@ discard block |
||
257 | 257 | 'get%sRepository', |
258 | 258 | $reflection->getShortName() |
259 | 259 | ), |
260 | - [], |
|
260 | + [ ], |
|
261 | 261 | MethodGenerator::FLAG_PUBLIC, |
262 | 262 | sprintf( |
263 | 263 | 'return $this->%s->getRepository(\\%s::class);', |