Completed
Push — master ( 59ba0b...c188d8 )
by Sebastian
04:32
created
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/Http/Controllers/Back/AdministratorsController.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -58,7 +58,7 @@
 block discarded – undo
58 58
     {
59 59
         $user = $this->frontUserRepository->find($id);
60 60
 
61
-        if (! $user) {
61
+        if (!$user) {
62 62
             abort(404);
63 63
         }
64 64
 
Please login to merge, or discard this patch.
app/Foundation/Enums/Enum.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -9,7 +9,7 @@  discard block
 block discarded – undo
9 9
 {
10 10
     public function doesntEqual(Enum $enum): bool
11 11
     {
12
-        return ! $this->equals($enum);
12
+        return !$this->equals($enum);
13 13
     }
14 14
 
15 15
     public static function toCollection():  Collection
@@ -19,7 +19,7 @@  discard block
 block discarded – undo
19 19
 
20 20
     public static function allAsRegex(): string
21 21
     {
22
-        return collect(static::values())->map(function ($value) {
22
+        return collect(static::values())->map(function($value) {
23 23
             return "({$value})";
24 24
         })->implode('|');
25 25
     }
Please login to merge, or discard this patch.