Completed
Pull Request — master (#74)
by Alessandro
05:45
created
src/Twig/FacileMongoDbBundleExtension.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -6,11 +6,11 @@
 block discarded – undo
6 6
 use Twig\Extension\AbstractExtension;
7 7
 use Twig\TwigFunction;
8 8
 
9
-if (! class_exists('\Twig\Extension\AbstractExtension')) {
9
+if (!class_exists('\Twig\Extension\AbstractExtension')) {
10 10
     class_alias(\Twig_Extension::class, '\Twig\Extension\AbstractExtension');
11 11
 }
12 12
 
13
-if (! class_exists('\Twig\TwigFunction')) {
13
+if (!class_exists('\Twig\TwigFunction')) {
14 14
     class_alias(\Twig_Function::class, '\Twig\TwigFunction');
15 15
 }
16 16
 
Please login to merge, or discard this patch.
src/Command/AbstractCommand.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -60,10 +60,10 @@
 block discarded – undo
60 60
         $connectionName = 'mongo.connection';
61 61
 
62 62
         if ($input->getOption('connection')) {
63
-            $connectionName .= '.' . $input->getOption('connection');
63
+            $connectionName .= '.'.$input->getOption('connection');
64 64
         }
65 65
 
66
-        if (! $this->container->has($connectionName)) {
66
+        if (!$this->container->has($connectionName)) {
67 67
             throw new \LogicException(sprintf('No connection named \'%s\' found', $input->getOption('connection')));
68 68
         }
69 69
 
Please login to merge, or discard this patch.