Completed
Push — master ( da8fd8...64e679 )
by Ashley
03:32
created
src/Validation/DoormanValidator.php 2 patches
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -33,12 +33,12 @@  discard block
 block discarded – undo
33 33
 
34 34
     protected function getParameterName($parameters, Validator $validator)
35 35
     {
36
-        if(isset($parameters[0])) return $parameters[0];
36
+        if (isset($parameters[ 0 ])) return $parameters[ 0 ];
37 37
 
38
-        $possibles = ['email', 'email_address'];
38
+        $possibles = [ 'email', 'email_address' ];
39 39
 
40 40
         foreach ($possibles as $possible) {
41
-            if(isset($validator->getData()[$possible])) return $possible;
41
+            if (isset($validator->getData()[ $possible ])) return $possible;
42 42
         }
43 43
     }
44 44
 
@@ -46,8 +46,8 @@  discard block
 block discarded – undo
46 46
     {
47 47
         $field = $this->getParameterName($parameters, $validator);
48 48
 
49
-        if($field) {
50
-            return $validator->getData()[$field];
49
+        if ($field) {
50
+            return $validator->getData()[ $field ];
51 51
         }
52 52
     }
53 53
 }
Please login to merge, or discard this patch.
Braces   +6 added lines, -2 removed lines patch added patch discarded remove patch
@@ -33,12 +33,16 @@
 block discarded – undo
33 33
 
34 34
     protected function getParameterName($parameters, Validator $validator)
35 35
     {
36
-        if(isset($parameters[0])) return $parameters[0];
36
+        if(isset($parameters[0])) {
37
+            return $parameters[0];
38
+        }
37 39
 
38 40
         $possibles = ['email', 'email_address'];
39 41
 
40 42
         foreach ($possibles as $possible) {
41
-            if(isset($validator->getData()[$possible])) return $possible;
43
+            if(isset($validator->getData()[$possible])) {
44
+                return $possible;
45
+            }
42 46
         }
43 47
     }
44 48
 
Please login to merge, or discard this patch.
src/Models/Invite.php 2 patches
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -8,7 +8,7 @@  discard block
 block discarded – undo
8 8
 {
9 9
     protected $dates = [ 'valid_until' ];
10 10
     
11
-    public function __construct(array $attributes = [])
11
+    public function __construct(array $attributes = [ ])
12 12
     {
13 13
         $this->table = config('doorman.invite_table_name');
14 14
         parent::__construct($attributes);
@@ -16,14 +16,14 @@  discard block
 block discarded – undo
16 16
 
17 17
     public function hasExpired()
18 18
     {
19
-        if(is_null($this->valid_until)) return false;
19
+        if (is_null($this->valid_until)) return false;
20 20
 
21 21
         return $this->valid_until->isPast();
22 22
     }
23 23
 
24 24
     public function isFull()
25 25
     {
26
-        if($this->max == 0) return false;
26
+        if ($this->max == 0) return false;
27 27
 
28 28
         return $this->uses >= $this->max;
29 29
     }
Please login to merge, or discard this patch.
Braces   +6 added lines, -2 removed lines patch added patch discarded remove patch
@@ -16,14 +16,18 @@
 block discarded – undo
16 16
 
17 17
     public function hasExpired()
18 18
     {
19
-        if(is_null($this->valid_until)) return false;
19
+        if(is_null($this->valid_until)) {
20
+            return false;
21
+        }
20 22
 
21 23
         return $this->valid_until->isPast();
22 24
     }
23 25
 
24 26
     public function isFull()
25 27
     {
26
-        if($this->max == 0) return false;
28
+        if($this->max == 0) {
29
+            return false;
30
+        }
27 31
 
28 32
         return $this->uses >= $this->max;
29 33
     }
Please login to merge, or discard this patch.