@@ -64,7 +64,7 @@ |
||
64 | 64 | } |
65 | 65 | |
66 | 66 | /** |
67 | - * @param $directory |
|
67 | + * @param string $directory |
|
68 | 68 | */ |
69 | 69 | private function loadSeeds($directory) |
70 | 70 | { |
@@ -57,7 +57,7 @@ |
||
57 | 57 | $this->baseUrl = env('API_FULL_URL'); // this reads the value from `phpunit.xml` during testing |
58 | 58 | |
59 | 59 | // override the default subDomain of the base URL when subDomain property is declared inside a test |
60 | - if(property_exists($this, 'subDomain')){ |
|
60 | + if (property_exists($this, 'subDomain')) { |
|
61 | 61 | $this->overrideSubDomain($this->subDomain); |
62 | 62 | } |
63 | 63 |
@@ -29,7 +29,7 @@ |
||
29 | 29 | } |
30 | 30 | |
31 | 31 | // allow access if has permission set but is empty or null |
32 | - if(!$this->access['permission']){ |
|
32 | + if (!$this->access['permission']) { |
|
33 | 33 | return true; |
34 | 34 | } |
35 | 35 |