@@ -110,7 +110,7 @@ |
||
110 | 110 | $iterator->rewind(); |
111 | 111 | |
112 | 112 | foreach ($iterator as $file) { |
113 | - $reflectionFile = new ReflectionFile((string)$file); |
|
113 | + $reflectionFile = new ReflectionFile((string) $file); |
|
114 | 114 | $reflectionNamespaces = $reflectionFile->getFileNamespaces(); |
115 | 115 | foreach ($reflectionNamespaces as $reflectionNamespace) { |
116 | 116 | foreach ($reflectionNamespace->getClasses() as $reflectionClass) { |
@@ -55,7 +55,7 @@ discard block |
||
55 | 55 | |
56 | 56 | $aspectName = $input->getOption('aspect'); |
57 | 57 | if (!$aspectName) { |
58 | - $io->text('<info>' . get_class($this->aspectKernel). '</info> has following enabled aspects:'); |
|
58 | + $io->text('<info>' . get_class($this->aspectKernel) . '</info> has following enabled aspects:'); |
|
59 | 59 | $aspects = $container->getByTag('aspect'); |
60 | 60 | } else { |
61 | 61 | $aspect = $container->getAspect($aspectName); |
@@ -112,7 +112,7 @@ discard block |
||
112 | 112 | $aspectItems = $aspectLoader->load($aspect); |
113 | 113 | $aspectItemsInfo = []; |
114 | 114 | foreach ($aspectItems as $itemId => $item) { |
115 | - $itemType = 'Unknown'; |
|
115 | + $itemType = 'Unknown'; |
|
116 | 116 | if ($item instanceof Pointcut) { |
117 | 117 | $itemType = 'Pointcut'; |
118 | 118 | } |