Passed
Push — master ( 6329ae...97db76 )
by Vasyl
03:14
created
src/Middleware/UrlAliasMiddleware.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -122,7 +122,7 @@
 block discarded – undo
122 122
      */
123 123
     public function customize($request, Closure $next)
124 124
     {
125
-       //...
125
+        //...
126 126
         return $next($request);
127 127
     }
128 128
 
Please login to merge, or discard this patch.
src/UrlAlias.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -39,7 +39,7 @@
 block discarded – undo
39 39
             if ($entity->urlAlias) {
40 40
                 unset($parameters[0]);
41 41
                 if (! $this->config->get('url-aliases.use_localization')) {
42
-                	$alias = $entity->urlAlias->alias;
42
+                    $alias = $entity->urlAlias->alias;
43 43
                 } elseif ($this->config->get('url-aliases-laravellocalization.origin_default_locale') == $entity->urlAlias->locale && $this->config->get('url-aliases-laravellocalization.hideDefaultLocaleInURL') && !$forceWithLocalePrefix) {
44 44
                     $alias = $entity->urlAlias->alias;
45 45
                 } else {
Please login to merge, or discard this patch.