Completed
Push — master ( d3808e...8999f6 )
by Freek
08:15
created
app/Services/Locale/TranslationLoader.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -20,17 +20,17 @@
 block discarded – undo
20 20
      */
21 21
     public function load($locale, $group, $namespace = null): array
22 22
     {
23
-        if (! is_null($namespace) && $namespace !== '*') {
23
+        if (!is_null($namespace) && $namespace !== '*') {
24 24
             return $this->loadNamespaced($locale, $group, $namespace);
25 25
         }
26 26
 
27
-        if (! $this->fragmentsAreAvailable()) {
27
+        if (!$this->fragmentsAreAvailable()) {
28 28
             return [];
29 29
         }
30 30
 
31 31
         return Cache::rememberForever(
32 32
             "locale.fragments.{$locale}.{$group}",
33
-            function () use ($group, $locale) {
33
+            function() use ($group, $locale) {
34 34
                 return Fragment::getGroup($group, $locale);
35 35
             }
36 36
         );
Please login to merge, or discard this patch.
app/Services/Html/HtmlBuilder.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -11,7 +11,7 @@
 block discarded – undo
11 11
 {
12 12
     public function flashMessage(): string
13 13
     {
14
-        if (! Session::has('flash_notification.message')) {
14
+        if (!Session::has('flash_notification.message')) {
15 15
             return '';
16 16
         }
17 17
 
Please login to merge, or discard this patch.
app/Http/Controllers/Back/Api/MediaLibraryController.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -20,12 +20,12 @@  discard block
 block discarded – undo
20 20
 
21 21
         $files = $request->file('file');
22 22
 
23
-        if (! is_array($files)) {
23
+        if (!is_array($files)) {
24 24
             $files = [$files];
25 25
         }
26 26
 
27 27
         $media = collect($files)
28
-            ->map(function (UploadedFile $file) use ($model, $request) {
28
+            ->map(function(UploadedFile $file) use ($model, $request) {
29 29
                 return $model
30 30
                     ->addMedia($file)
31 31
                     ->withCustomProperties(['temp' => $request->has('redactor') ? false : true])
@@ -45,7 +45,7 @@  discard block
 block discarded – undo
45 45
 
46 46
         $collectionName = $request->get('collectionName');
47 47
 
48
-        $media = $model->getMedia($collectionName)->reduce(function (Collection $collection, Media $media) {
48
+        $media = $model->getMedia($collectionName)->reduce(function(Collection $collection, Media $media) {
49 49
             return $collection->push([
50 50
                 'thumb' => $media->getUrl('admin'),
51 51
                 'image' => $media->getUrl('redactor'),
@@ -58,11 +58,11 @@  discard block
 block discarded – undo
58 58
 
59 59
     protected function getModelFromRequest(Request $request)
60 60
     {
61
-        if (! isset($request['model_name'])) {
61
+        if (!isset($request['model_name'])) {
62 62
             throw new Exception('No model name provided');
63 63
         }
64 64
 
65
-        if (! isset($request['model_id'])) {
65
+        if (!isset($request['model_id'])) {
66 66
             throw new Exception('No model id provided');
67 67
         }
68 68
 
Please login to merge, or discard this patch.
app/Http/Middleware/LoginAs.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -18,7 +18,7 @@  discard block
 block discarded – undo
18 18
             return $next($request);
19 19
         }
20 20
 
21
-        if (! $this->canLoginAs()) {
21
+        if (!$this->canLoginAs()) {
22 22
             throw new Exception("You can't log in as a specific user right now");
23 23
         }
24 24
 
@@ -29,15 +29,15 @@  discard block
 block discarded – undo
29 29
     {
30 30
         // Just to be sure...
31 31
 
32
-        if (! app()->environment('local')) {
32
+        if (!app()->environment('local')) {
33 33
             return false;
34 34
         }
35 35
 
36
-        if (! ends_with(request()->getHost(), '.dev')) {
36
+        if (!ends_with(request()->getHost(), '.dev')) {
37 37
             return false;
38 38
         }
39 39
 
40
-        if (! in_array(env('DB_USERNAME'), ['homestead', 'root'])) {
40
+        if (!in_array(env('DB_USERNAME'), ['homestead', 'root'])) {
41 41
             return false;
42 42
         }
43 43
 
@@ -61,7 +61,7 @@  discard block
 block discarded – undo
61 61
 
62 62
     protected function getUser(string $identifier): Authenticatable
63 63
     {
64
-        if (! str_contains($identifier, '@')) {
64
+        if (!str_contains($identifier, '@')) {
65 65
             $identifier .= '@spatie.be';
66 66
         }
67 67
 
Please login to merge, or discard this patch.
app/Models/FormResponse.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -11,11 +11,11 @@
 block discarded – undo
11 11
 
12 12
     public static function downloadAll()
13 13
     {
14
-        Excel::create('Responses '.date('Y-m-d'), function ($excel) {
15
-            $excel->sheet('Responses', function ($sheet) {
14
+        Excel::create('Responses '.date('Y-m-d'), function($excel) {
15
+            $excel->sheet('Responses', function($sheet) {
16 16
                 $sheet->freezeFirstRow();
17 17
 
18
-                $sheet->cells('A1:Z1', function ($cells) {
18
+                $sheet->cells('A1:Z1', function($cells) {
19 19
                     $cells->setFontWeight('bold');
20 20
                     $cells->setBorder('node', 'none', 'solid', 'none');
21 21
                 });
Please login to merge, or discard this patch.
app/Providers/ConfigServiceProvider.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -32,7 +32,7 @@  discard block
 block discarded – undo
32 32
         }
33 33
 
34 34
         try {
35
-            if (! class_exists('Memcached')) {
35
+            if (!class_exists('Memcached')) {
36 36
                 throw new Exception();
37 37
             }
38 38
 
@@ -50,7 +50,7 @@  discard block
 block discarded – undo
50 50
 
51 51
         config()->set(
52 52
             'mail.recipients',
53
-            collect(config('mail.recipients'))->map(function () {
53
+            collect(config('mail.recipients'))->map(function() {
54 54
                 return '[email protected]';
55 55
             })
56 56
         );
Please login to merge, or discard this patch.
app/Models/Article.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -41,7 +41,7 @@  discard block
 block discarded – undo
41 41
 
42 42
     public function isSpecialArticle(): bool
43 43
     {
44
-        return ! empty($this->technical_name);
44
+        return !empty($this->technical_name);
45 45
     }
46 46
 
47 47
     public function children(): HasMany
@@ -56,7 +56,7 @@  discard block
 block discarded – undo
56 56
 
57 57
     public function getFirstChildAttribute(): Article
58 58
     {
59
-        if (! $this->hasChildren()) {
59
+        if (!$this->hasChildren()) {
60 60
             throw new Exception("Article `{$this->id}` doesn't have any children.");
61 61
         }
62 62
 
@@ -77,7 +77,7 @@  discard block
 block discarded – undo
77 77
 
78 78
     public function hasParent(): bool
79 79
     {
80
-        return ! is_null($this->parent);
80
+        return !is_null($this->parent);
81 81
     }
82 82
 
83 83
     public function getFullUrlAttribute(): string
Please login to merge, or discard this patch.
app/Providers/RouteServiceProvider.php 1 patch
Spacing   +11 added lines, -11 removed lines patch added patch discarded remove patch
@@ -25,7 +25,7 @@  discard block
 block discarded – undo
25 25
 
26 26
     protected function registerMacros(Router $router)
27 27
     {
28
-        $router->macro('module', function ($module, $sortable = false) use ($router) {
28
+        $router->macro('module', function($module, $sortable = false) use ($router) {
29 29
             $controller = ucfirst($module).'Controller';
30 30
             if ($sortable) {
31 31
                 $router->patch("{$module}/changeOrder", $controller.'@changeOrder');
@@ -39,15 +39,15 @@  discard block
 block discarded – undo
39 39
 
40 40
     public function map(Router $router)
41 41
     {
42
-        Route::group(['namespace' => $this->namespace], function () {
42
+        Route::group(['namespace' => $this->namespace], function() {
43 43
 
44 44
             /*
45 45
              * Special routes
46 46
              */
47
-            Route::group(['middleware' => 'web'], function () {
47
+            Route::group(['middleware' => 'web'], function() {
48 48
                 Route::demoAccess('/demo');
49 49
 
50
-                Route::get('coming-soon', function () {
50
+                Route::get('coming-soon', function() {
51 51
                     return view('temp/index');
52 52
                 });
53 53
             });
@@ -55,10 +55,10 @@  discard block
 block discarded – undo
55 55
             /*
56 56
              * Back site
57 57
              */
58
-            Route::group(['namespace' => 'Back', 'middleware' => 'web', 'prefix' => 'blender'], function () {
58
+            Route::group(['namespace' => 'Back', 'middleware' => 'web', 'prefix' => 'blender'], function() {
59 59
                 Auth::routes();
60 60
 
61
-                Route::group(['middleware' => 'auth'], function () {
61
+                Route::group(['middleware' => 'auth'], function() {
62 62
                     require base_path('routes/back.php');
63 63
                 });
64 64
             });
@@ -67,15 +67,15 @@  discard block
 block discarded – undo
67 67
              * Frontsite
68 68
              */
69 69
 
70
-            Route::group(['namespace' => 'Front'], function () {
71
-                Route::group(['namespace' => 'Api', 'middleware' => 'api', 'prefix' => 'api'], function () {
70
+            Route::group(['namespace' => 'Front'], function() {
71
+                Route::group(['namespace' => 'Api', 'middleware' => 'api', 'prefix' => 'api'], function() {
72 72
                     require base_path('routes/frontApi.php');
73 73
                 });
74 74
 
75
-                Route::group(['middleware' => ['web', 'demoMode', 'rememberLocale']], function () {
75
+                Route::group(['middleware' => ['web', 'demoMode', 'rememberLocale']], function() {
76 76
                     $multiLingual = count(config('app.locales')) > 1;
77 77
 
78
-                    Route::group($multiLingual ? ['prefix' => locale()] : [], function () {
78
+                    Route::group($multiLingual ? ['prefix' => locale()] : [], function() {
79 79
                         try {
80 80
                             Auth::routes();
81 81
                             require base_path('routes/front.php');
@@ -85,7 +85,7 @@  discard block
 block discarded – undo
85 85
                     });
86 86
 
87 87
                     if ($multiLingual) {
88
-                        Route::get('/', function () {
88
+                        Route::get('/', function() {
89 89
                             return redirect(locale());
90 90
                         });
91 91
                     }
Please login to merge, or discard this patch.
app/Providers/ValidationServiceProvider.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -9,7 +9,7 @@
 block discarded – undo
9 9
 {
10 10
     public function boot()
11 11
     {
12
-        Validator::extend('enum', function ($attribute, $value, $parameters) {
12
+        Validator::extend('enum', function($attribute, $value, $parameters) {
13 13
 
14 14
             /** @var \App\Foundation\Enums\Enum $class */
15 15
             $class = $parameters[0];
Please login to merge, or discard this patch.