Completed
Push — master ( 232c3c...5c80cd )
by Paweł
03:09
created
src/Infrastructure/Persistence/LocalBookRepository.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -31,6 +31,6 @@
 block discarded – undo
31 31
 
32 32
     public function __construct()
33 33
     {
34
-        $this->file = new FileRepository(__DIR__.'/../../../cache/books.db', new AccessorObjectIdentifier('id'));
34
+        $this->file = new FileRepository(__DIR__ . '/../../../cache/books.db', new AccessorObjectIdentifier('id'));
35 35
     }
36 36
 }
Please login to merge, or discard this patch.
src/Infrastructure/Persistence/LocalReservationRepository.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -64,6 +64,6 @@
 block discarded – undo
64 64
 
65 65
     public function __construct()
66 66
     {
67
-        $this->file = new FileRepository(__DIR__.'/../../../cache/reservations.db', new AccessorObjectIdentifier('id'));
67
+        $this->file = new FileRepository(__DIR__ . '/../../../cache/reservations.db', new AccessorObjectIdentifier('id'));
68 68
     }
69 69
 }
Please login to merge, or discard this patch.