Completed
Push — master ( f53b98...356c58 )
by Dawid
03:12
created
examples/custom_type_example.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -95,4 +95,4 @@
 block discarded – undo
95 95
 
96 96
 $track = $unitOfWork->get(Track::class, 1);
97 97
 
98
-print_r($track->getComposer());// Instance of composer.
98
+print_r($track->getComposer()); // Instance of composer.
Please login to merge, or discard this patch.
examples/custom_hydrator_example.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -107,4 +107,4 @@
 block discarded – undo
107 107
 // Now database is queried and data gets hydrated with custom hydrator to instance of Track class.
108 108
 $track = $unitOfWork->get(Track::class, 1);
109 109
 
110
-echo $track->getAlbum();// Unknown album.
110
+echo $track->getAlbum(); // Unknown album.
Please login to merge, or discard this patch.