Passed
Pull Request — master (#145)
by
unknown
07:41
created
app/Shop/Addresses/Repositories/AddressRepository.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -102,7 +102,7 @@
 block discarded – undo
102 102
     public function findAddressById(int $id, bool $withSoftDeletes = false) : Address
103 103
     {
104 104
         try {
105
-            if(isset($withSoftDeletes)) {
105
+            if (isset($withSoftDeletes)) {
106 106
                 return Address::withTrashed()->where('id', $id)->firstOrFail();
107 107
             }
108 108
             return $this->findOneOrFail($id);
Please login to merge, or discard this patch.