Completed
Pull Request — master (#10)
by
unknown
02:13
created
DependencyInjection/Configuration.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -40,7 +40,7 @@
 block discarded – undo
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);
Please login to merge, or discard this patch.
CacheWarmer/AspectCacheWarmer.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -79,7 +79,7 @@  discard block
 block discarded – undo
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
 
@@ -91,7 +91,7 @@  discard block
 block discarded – undo
91 91
                 file_get_contents(
92 92
                     FilterInjectorTransformer::PHP_FILTER_READ.
93 93
                     SourceTransformingLoader::FILTER_IDENTIFIER.
94
-                    "/resource=" . $realPath
94
+                    "/resource=".$realPath
95 95
                 );
96 96
             } catch (\Exception $e) {
97 97
                 $errors[$realPath] = $e;
Please login to merge, or discard this patch.
GoAopBundle.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -48,7 +48,7 @@
 block discarded – undo
48 48
         }
49 49
         try {
50 50
             $this->container->get('goaop.aspect.container');
51
-        } catch( ServiceNotFoundException $e ) {
51
+        } catch (ServiceNotFoundException $e) {
52 52
             throw new \RuntimeException("`goaop.aspect.container` is not defined, please remove the cache manually and run `cache:warmup`");
53 53
         }
54 54
         if (!AopComposerLoader::wasInitialized()) {
Please login to merge, or discard this patch.