Completed
Push — master ( ed601b...d1c017 )
by Mahmoud
03:13
created
app/Port/Loader/Loaders/SeederLoaderAbstract.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -64,7 +64,7 @@
 block discarded – undo
64 64
     }
65 65
 
66 66
     /**
67
-     * @param $directory
67
+     * @param string $directory
68 68
      */
69 69
     private function loadSeeds($directory)
70 70
     {
Please login to merge, or discard this patch.
app/Port/Test/PHPUnit/Abstracts/TestCase.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -57,7 +57,7 @@
 block discarded – undo
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
 
Please login to merge, or discard this patch.
app/Port/Request/Traits/RequestTrait.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -29,7 +29,7 @@
 block discarded – undo
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
 
Please login to merge, or discard this patch.