GitHub Access Token became invalid

It seems like the GitHub access token used for retrieving details about this repository from GitHub became invalid. This might prevent certain types of inspections from being run (in particular, everything related to pull requests).
Please ask an admin of your repository to re-new the access token on this website.
Completed
Push — master ( 496bfb...0b7374 )
by Gilmar
11:28
created
src/Entity/ManagerAbstract.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -40,7 +40,7 @@  discard block
 block discarded – undo
40 40
 
41 41
     protected function factoryEntityCollection($data)
42 42
     {
43
-        return $this->factoryNeighborObject($this->getEntityName() . 'Collection', $data);
43
+        return $this->factoryNeighborObject($this->getEntityName().'Collection', $data);
44 44
     }
45 45
 
46 46
     /**
@@ -60,7 +60,7 @@  discard block
 block discarded – undo
60 60
      */
61 61
     public function update(EntityInterface $entity, EntityInterface $existent)
62 62
     {
63
-        $text = 'Chamada a Atualização de entity ' . $this->entity;
63
+        $text = 'Chamada a Atualização de entity '.$this->entity;
64 64
 
65 65
         return $this->log('debug', $text, [
66 66
             'entity'   => $entity,
Please login to merge, or discard this patch.
src/Entity/Product/Manager.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -46,9 +46,9 @@
 block discarded – undo
46 46
             'Price',
47 47
             //'Status'
48 48
         ] as $key) {
49
-            $getter = 'get' . $key;
49
+            $getter = 'get'.$key;
50 50
             if ($this->attributesDiff($entity->$getter(), $existent->$getter())) {
51
-                $method = 'update' . $key;
51
+                $method = 'update'.$key;
52 52
                 $updated[$key] = $this->$method($entity);
53 53
             }
54 54
         }
Please login to merge, or discard this patch.