Completed
Push — master ( 06b190...8889e1 )
by Sergio
20:23 queued 05:24
created
src/services/HitCounterDtoAssembler.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -10,13 +10,13 @@
 block discarded – undo
10 10
  * Class HitCounterAssembler
11 11
  */
12 12
 
13
-final class HitCounterDtoAssembler{
13
+final class HitCounterDtoAssembler {
14 14
 
15 15
     private $entityClass;
16 16
     
17 17
     public function __construct($entityClass = HitCounter::class)
18 18
     {
19
-        if(!(new $entityClass) instanceof HitCounter){
19
+        if (!(new $entityClass) instanceof HitCounter) {
20 20
             throw new \InvalidArgumentException($this->entityClass . 'not subclass from' . HitCounter::class);
21 21
         }
22 22
         $this->entityClass = $entityClass;
Please login to merge, or discard this patch.