Completed
Push — master ( 2f98c5...86c274 )
by Alexis
02:47
created
src/Twig/AssetExtension.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -50,9 +50,9 @@
 block discarded – undo
50 50
     public function asset($path)
51 51
     {
52 52
         if (null !== $this->basePath) {
53
-            return $this->request->getUri()->getBaseUrl().'/'.trim($this->basePath, '/').'/'.$path;
53
+            return $this->request->getUri()->getBaseUrl() . '/' . trim($this->basePath, '/') . '/' . $path;
54 54
         }
55 55
 
56
-        return $this->request->getUri()->getBaseUrl().'/'.$path;
56
+        return $this->request->getUri()->getBaseUrl() . '/' . $path;
57 57
     }
58 58
 }
Please login to merge, or discard this patch.
src/Command/DatabaseCommand.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -23,7 +23,7 @@
 block discarded – undo
23 23
      */
24 24
     protected function execute(InputInterface $input, OutputInterface $output)
25 25
     {
26
-        require __DIR__.'/../../config/database/index.php';
26
+        require __DIR__ . '/../../config/database/index.php';
27 27
 
28 28
         return 0;
29 29
     }
Please login to merge, or discard this patch.