Completed
Push — master ( 3b190f...1103fd )
by Tomohiro
8s
created
src/Dictionary.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -16,10 +16,10 @@
 block discarded – undo
16 16
 
17 17
     final private function __construct()
18 18
     {
19
-        $peopleJsonPath = __DIR__.'/data/people.json';
19
+        $peopleJsonPath = __DIR__ . '/data/people.json';
20 20
         $this->people = json_decode(file_get_contents($peopleJsonPath));
21 21
 
22
-        $addressesJsonPath = __DIR__.'/data/addresses.json';
22
+        $addressesJsonPath = __DIR__ . '/data/addresses.json';
23 23
         $this->addresses = json_decode(file_get_contents($addressesJsonPath));
24 24
     }
25 25
 
Please login to merge, or discard this patch.