Completed
Push — master ( 2926d6...5cb0f4 )
by Muhammad Kashif
32:38 queued 07:41
created
src/Factory/JsonServiceFactory.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -44,9 +44,9 @@  discard block
 block discarded – undo
44 44
      */
45 45
     private function loadServiceList($jsonFile)
46 46
     {
47
-       $services =  $this->loadJsonFile($jsonFile);
47
+       $services = $this->loadJsonFile($jsonFile);
48 48
 
49
-       foreach($services->services as $service) {
49
+       foreach ($services->services as $service) {
50 50
            $this->services[$service->id] = $service;
51 51
        }
52 52
     }
@@ -56,7 +56,7 @@  discard block
 block discarded – undo
56 56
      */
57 57
     public function create($service)
58 58
     {
59
-        if(!isset($this->services[$service])) {
59
+        if (!isset($this->services[$service])) {
60 60
             throw new NotFoundException('Service not found: ' . $service);
61 61
         }
62 62
 
Please login to merge, or discard this patch.