Completed
Branch master (ebdf13)
by Alex
03:29 queued 01:42
created
src/Extension/RequestExtension.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -43,7 +43,7 @@  discard block
 block discarded – undo
43 43
             $host .= ':' . $uri->getPort();
44 44
         }
45 45
 
46
-        if (! $this->hasLeadingSlash($path)) {
46
+        if (!$this->hasLeadingSlash($path)) {
47 47
             $path = rtrim($uri->getPath(), '/') . '/' . $path;
48 48
         }
49 49
 
@@ -56,7 +56,7 @@  discard block
 block discarded – undo
56 56
      */
57 57
     public function generateRelativeUrl($path)
58 58
     {
59
-        if ($this->isNetworkPath($path) || ! $this->hasLeadingSlash($path)) {
59
+        if ($this->isNetworkPath($path) || !$this->hasLeadingSlash($path)) {
60 60
             return $path;
61 61
         }
62 62
 
Please login to merge, or discard this patch.
src/Configuration/TwigConfiguration.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -17,7 +17,7 @@
 block discarded – undo
17 17
      */
18 18
     public function apply(Injector $injector)
19 19
     {
20
-        $injector->prepare(FormattedResponder::class, function (FormattedResponder $responder) {
20
+        $injector->prepare(FormattedResponder::class, function(FormattedResponder $responder) {
21 21
             return $responder->withValue(TwigFormatter::class, 1.0);
22 22
         });
23 23
 
Please login to merge, or discard this patch.