Completed
Pull Request — master (#146)
by
unknown
25:15
created
src/ExpectationBundle/Exception/ExpectationNotFoundException.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -12,7 +12,7 @@
 block discarded – undo
12 12
     public function __construct($alias, $code = 0, $previous = null)
13 13
     {
14 14
         parent::__construct(
15
-            'Expectation with ' . $alias . ' could not be found.',
15
+            'Expectation with '.$alias.' could not be found.',
16 16
             $code,
17 17
             $previous
18 18
         );
Please login to merge, or discard this patch.
src/ExpectationBundle/DependencyInjection/OverwatchExpectationExtension.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -22,7 +22,7 @@
 block discarded – undo
22 22
     {
23 23
         $this->processConfiguration(new Configuration(), $configs);
24 24
 
25
-        $loader = new Loader\YamlFileLoader($container, new FileLocator(__DIR__ . '/../Resources/config'));
25
+        $loader = new Loader\YamlFileLoader($container, new FileLocator(__DIR__.'/../Resources/config'));
26 26
         $loader->load('services.yml');
27 27
     }
28 28
 }
Please login to merge, or discard this patch.
src/ExpectationBundle/Tests/Exception/ExpectationNotFoundExceptionTest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -16,6 +16,6 @@
 block discarded – undo
16 16
         $exception = new ExpectationNotFoundException($badAlias);
17 17
 
18 18
         $this->assertInstanceOf('\OutOfBoundsException', $exception);
19
-        $this->assertEquals($exception->getMessage(), 'Expectation with ' . $badAlias . ' could not be found.');
19
+        $this->assertEquals($exception->getMessage(), 'Expectation with '.$badAlias.' could not be found.');
20 20
     }
21 21
 }
Please login to merge, or discard this patch.
src/TestBundle/DependencyInjection/OverwatchTestExtension.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -22,7 +22,7 @@
 block discarded – undo
22 22
     {
23 23
         $this->processConfiguration(new Configuration(), $configs);
24 24
 
25
-        $loader = new Loader\YamlFileLoader($container, new FileLocator(__DIR__ . '/../Resources/config'));
25
+        $loader = new Loader\YamlFileLoader($container, new FileLocator(__DIR__.'/../Resources/config'));
26 26
         $loader->load('services.yml');
27 27
     }
28 28
 }
Please login to merge, or discard this patch.
src/ResultBundle/DependencyInjection/OverwatchResultExtension.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -22,7 +22,7 @@
 block discarded – undo
22 22
     {
23 23
         $this->processConfiguration(new Configuration(), $configs);
24 24
 
25
-        $loader = new Loader\YamlFileLoader($container, new FileLocator(__DIR__ . '/../Resources/config'));
25
+        $loader = new Loader\YamlFileLoader($container, new FileLocator(__DIR__.'/../Resources/config'));
26 26
         $loader->load('services.yml');
27 27
     }
28 28
 }
Please login to merge, or discard this patch.
src/UserBundle/DependencyInjection/OverwatchUserExtension.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -22,7 +22,7 @@
 block discarded – undo
22 22
     {
23 23
         $this->processConfiguration(new Configuration(), $configs);
24 24
 
25
-        $loader = new Loader\YamlFileLoader($container, new FileLocator(__DIR__ . '/../Resources/config'));
25
+        $loader = new Loader\YamlFileLoader($container, new FileLocator(__DIR__.'/../Resources/config'));
26 26
         $loader->load('services.yml');
27 27
     }
28 28
 }
Please login to merge, or discard this patch.