@@ -40,7 +40,7 @@ |
||
40 | 40 | ->scalarNode('features') |
41 | 41 | ->beforeNormalization() |
42 | 42 | ->ifArray() |
43 | - ->then(function ($v) use ($features) { |
|
43 | + ->then(function($v) use ($features) { |
|
44 | 44 | $featureMask = 0; |
45 | 45 | foreach ($v as $featureName) { |
46 | 46 | $featureName = strtoupper($featureName); |
@@ -79,7 +79,7 @@ discard block |
||
79 | 79 | $enumerator = new Enumerator($options['appDir'], $options['includePaths'], $options['excludePaths']); |
80 | 80 | $iterator = $enumerator->enumerate(); |
81 | 81 | |
82 | - set_error_handler(function ($errno, $errstr, $errfile, $errline) { |
|
82 | + set_error_handler(function($errno, $errstr, $errfile, $errline) { |
|
83 | 83 | throw new \ErrorException($errstr, $errno, 0, $errfile, $errline); |
84 | 84 | }); |
85 | 85 | |
@@ -90,7 +90,7 @@ discard block |
||
90 | 90 | file_get_contents( |
91 | 91 | FilterInjectorTransformer::PHP_FILTER_READ. |
92 | 92 | SourceTransformingLoader::FILTER_IDENTIFIER. |
93 | - "/resource=" . $realPath |
|
93 | + "/resource=".$realPath |
|
94 | 94 | ); |
95 | 95 | } catch (\Exception $e) { |
96 | 96 | /* noop */ |
@@ -26,7 +26,7 @@ discard block |
||
26 | 26 | */ |
27 | 27 | public function itInitializesAspectKernel() |
28 | 28 | { |
29 | - require_once __DIR__ . '/../Fixtures/mock/DebugClassLoader.php'; |
|
29 | + require_once __DIR__.'/../Fixtures/mock/DebugClassLoader.php'; |
|
30 | 30 | |
31 | 31 | DebugClassLoader::reset(); |
32 | 32 | DebugClassLoader::enable(); |
@@ -49,8 +49,8 @@ discard block |
||
49 | 49 | */ |
50 | 50 | public function itThrowsExceptionWhenIntializationIsImpossible() |
51 | 51 | { |
52 | - require_once __DIR__ . '/../Fixtures/mock/DebugClassLoader.php'; |
|
53 | - require_once __DIR__ . '/../Fixtures/mock/AopComposerLoader.php'; |
|
52 | + require_once __DIR__.'/../Fixtures/mock/DebugClassLoader.php'; |
|
53 | + require_once __DIR__.'/../Fixtures/mock/AopComposerLoader.php'; |
|
54 | 54 | |
55 | 55 | AopComposerLoader::$initialized = false; |
56 | 56 |
@@ -41,7 +41,7 @@ |
||
41 | 41 | $this->assertContainerBuilderHasService($id); |
42 | 42 | } |
43 | 43 | |
44 | - $this->assertEquals(count($expectedServices), count(array_filter($this->container->getDefinitions(), function ($id) { |
|
44 | + $this->assertEquals(count($expectedServices), count(array_filter($this->container->getDefinitions(), function($id) { |
|
45 | 45 | return 0 === strpos($id, 'goaop.'); |
46 | 46 | }, ARRAY_FILTER_USE_KEY))); |
47 | 47 | } |
@@ -38,7 +38,7 @@ discard block |
||
38 | 38 | ]; |
39 | 39 | |
40 | 40 | $sources = [ |
41 | - __DIR__ . '/../Fixtures/config/empty.xml', |
|
41 | + __DIR__.'/../Fixtures/config/empty.xml', |
|
42 | 42 | ]; |
43 | 43 | |
44 | 44 | $this->assertProcessedConfigurationEquals($expectedConfiguration, $sources); |
@@ -70,7 +70,7 @@ discard block |
||
70 | 70 | ]; |
71 | 71 | |
72 | 72 | $sources = [ |
73 | - __DIR__ . '/../Fixtures/config/full.yml', |
|
73 | + __DIR__.'/../Fixtures/config/full.yml', |
|
74 | 74 | ]; |
75 | 75 | |
76 | 76 | $this->assertProcessedConfigurationEquals($expectedConfiguration, $sources); |
@@ -102,7 +102,7 @@ discard block |
||
102 | 102 | ]; |
103 | 103 | |
104 | 104 | $sources = [ |
105 | - __DIR__ . '/../Fixtures/config/full.xml', |
|
105 | + __DIR__.'/../Fixtures/config/full.xml', |
|
106 | 106 | ]; |
107 | 107 | |
108 | 108 | $this->assertProcessedConfigurationEquals($expectedConfiguration, $sources); |
@@ -31,7 +31,7 @@ discard block |
||
31 | 31 | */ |
32 | 32 | public function getXsdValidationBasePath() |
33 | 33 | { |
34 | - return __DIR__ . '/../Resources/config/schema'; |
|
34 | + return __DIR__.'/../Resources/config/schema'; |
|
35 | 35 | } |
36 | 36 | |
37 | 37 | /** |
@@ -57,7 +57,7 @@ discard block |
||
57 | 57 | } |
58 | 58 | $container->setParameter('goaop.options', $normalizedOptions); |
59 | 59 | |
60 | - $loader = new XmlFileLoader($container, new FileLocator(__DIR__ . '/../Resources/config')); |
|
60 | + $loader = new XmlFileLoader($container, new FileLocator(__DIR__.'/../Resources/config')); |
|
61 | 61 | $loader->load('services.xml'); |
62 | 62 | $loader->load('commands.xml'); |
63 | 63 |