Test Setup Failed
Push — master ( 4dae0c...3e2b4e )
by
unknown
08:58
created
app/Http/Requests/MenuRequest.php 1 patch
Spacing   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -49,9 +49,9 @@  discard block
 block discarded – undo
49 49
                 continue;
50 50
             }
51 51
 
52
-            $rules['trans.' . $locale . '.label'] = 'required';
53
-            if ($this->request->get('trans.' . $locale . '.url') != null) {
54
-                $rules['trans.' . $locale . '.url'] = 'url';
52
+            $rules['trans.'.$locale.'.label'] = 'required';
53
+            if ($this->request->get('trans.'.$locale.'.url') != null) {
54
+                $rules['trans.'.$locale.'.url'] = 'url';
55 55
             }
56 56
         }
57 57
 
@@ -63,8 +63,8 @@  discard block
 block discarded – undo
63 63
         $attributes = [];
64 64
 
65 65
         foreach (array_keys($this->request->all('trans')) as $locale) {
66
-            $attributes['trans.' . $locale . '.label'] = $locale . ' label';
67
-            $attributes['trans.' . $locale . '.url'] = $locale . ' link';
66
+            $attributes['trans.'.$locale.'.label'] = $locale.' label';
67
+            $attributes['trans.'.$locale.'.url'] = $locale.' link';
68 68
         }
69 69
 
70 70
         $attributes['owner_reference'] = 'Interne pagina';
@@ -95,10 +95,10 @@  discard block
 block discarded – undo
95 95
 
96 96
             // Check if it is a relative
97 97
             if ($this->isRelativeUrl($trans['url'])) {
98
-                $data['trans'][$locale]['url'] = '/' . trim($trans['url'], '/');
98
+                $data['trans'][$locale]['url'] = '/'.trim($trans['url'], '/');
99 99
             } elseif (Str::startsWith($trans['url'], ['mailto:', 'tel:', 'https://', 'http://'])) {
100 100
                 $data['trans'][$locale]['url'] = $trans['url'];
101
-            } else {
101
+            }else {
102 102
                 $data['trans'][$locale]['url'] = Url::fromString($trans['url'])->secure()->get();
103 103
             }
104 104
 
@@ -115,6 +115,6 @@  discard block
 block discarded – undo
115 115
         // Check if passed url is not intended as a host instead of a relative path
116 116
         $notIntentedAsRoot = (null == Root::fromString($url)->getScheme() && false === strpos($url, '.'));
117 117
 
118
-        return ($notIntentedAsRoot && in_array($url, [$nakedUrl, '/' . $nakedUrl]));
118
+        return ($notIntentedAsRoot && in_array($url, [$nakedUrl, '/'.$nakedUrl]));
119 119
     }
120 120
 }
Please login to merge, or discard this patch.
app/Console/ImportRedirects.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -24,7 +24,7 @@  discard block
 block discarded – undo
24 24
     public function handle(): void
25 25
     {
26 26
         // CSV should consist of: locale - redirect url - target -url
27
-        $this->loop($this->argument('file'), function ($row) {
27
+        $this->loop($this->argument('file'), function($row) {
28 28
             try {
29 29
                 $this->addRedirect->handle($row[0], $row[1], $row[2]);
30 30
             } catch (UrlRecordNotFound $e) {
@@ -36,7 +36,7 @@  discard block
 block discarded – undo
36 36
 
37 37
                 return;
38 38
             }
39
-            $this->info('Added '.$row[0].' redirect: ' . $row[1] . ' -> ' . $row[2]);
39
+            $this->info('Added '.$row[0].' redirect: '.$row[1].' -> '.$row[2]);
40 40
         });
41 41
 
42 42
         $this->info('Finished adding redirects');
Please login to merge, or discard this patch.
app/Console/TranslationsExportCommand.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -24,8 +24,8 @@  discard block
 block discarded – undo
24 24
         $locales = config('chief.locales');
25 25
         $locale = $this->argument('locale');
26 26
 
27
-        if (! in_array($locale, $locales)) {
28
-            throw new \InvalidArgumentException('Passed locale ' . $locale .' is not found as Chief locale. Available locales are ' . implode(',', $locales));
27
+        if (!in_array($locale, $locales)) {
28
+            throw new \InvalidArgumentException('Passed locale '.$locale.' is not found as Chief locale. Available locales are '.implode(',', $locales));
29 29
         }
30 30
 
31 31
         $targetLocales = $locales;
@@ -49,8 +49,8 @@  discard block
 block discarded – undo
49 49
     {
50 50
         return UrlRecord::allOnlineModels($locale)
51 51
             // In case the url is not found or present for given locale.
52
-            ->reject(function (Visitable $model) use ($locale) {
53
-                return ! $model->url($locale);
52
+            ->reject(function(Visitable $model) use ($locale) {
53
+                return !$model->url($locale);
54 54
             });
55 55
     }
56 56
 }
Please login to merge, or discard this patch.