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.
Passed
Push — master ( 77b4e4...bbcfbe )
by Steeven
02:51
created
src/Libraries/Ui/Contents/Table/Column.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -32,8 +32,8 @@
 block discarded – undo
32 32
     {
33 33
         parent::__construct('td');
34 34
 
35
-        if (isset($attributes[ 'id' ])) {
36
-            $this->entity->setEntityName($attributes[ 'id' ]);
35
+        if (isset($attributes['id'])) {
36
+            $this->entity->setEntityName($attributes['id']);
37 37
         }
38 38
 
39 39
         if (count($attributes)) {
Please login to merge, or discard this patch.
src/Libraries/Ui/Contents/Address.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -33,8 +33,8 @@
 block discarded – undo
33 33
     {
34 34
         parent::__construct('address');
35 35
 
36
-        if (isset($attributes[ 'id' ])) {
37
-            $this->entity->setEntityName($attributes[ 'id' ]);
36
+        if (isset($attributes['id'])) {
37
+            $this->entity->setEntityName($attributes['id']);
38 38
         }
39 39
 
40 40
         if (count($attributes)) {
Please login to merge, or discard this patch.
src/Libraries/Ui/Grid/Row.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -75,7 +75,7 @@
 block discarded – undo
75 75
         if ( ! $this->hasItem($column->entity->getEntityName())) {
76 76
             $this->childNodes[] = $column;
77 77
             $this->childNodes->last();
78
-            $this->childNodesEntities[ $this->childNodes->key() ] = $column->entity->getEntityName();
78
+            $this->childNodesEntities[$this->childNodes->key()] = $column->entity->getEntityName();
79 79
         }
80 80
     }
81 81
 
Please login to merge, or discard this patch.
src/Libraries/Ui/Grid/Container.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -44,8 +44,8 @@
 block discarded – undo
44 44
         parent::__construct('div');
45 45
         $this->attributes->addAttributeClass('container');
46 46
 
47
-        if (isset($attributes[ 'id' ])) {
48
-            $this->entity->setEntityName($attributes[ 'id' ]);
47
+        if (isset($attributes['id'])) {
48
+            $this->entity->setEntityName($attributes['id']);
49 49
         }
50 50
 
51 51
         if (count($attributes)) {
Please login to merge, or discard this patch.
src/Libraries/Ui/Grid/Column.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -30,8 +30,8 @@
 block discarded – undo
30 30
     {
31 31
         parent::__construct('div');
32 32
 
33
-        if (isset($attributes[ 'id' ])) {
34
-            $this->entity->setEntityName($attributes[ 'id' ]);
33
+        if (isset($attributes['id'])) {
34
+            $this->entity->setEntityName($attributes['id']);
35 35
         }
36 36
 
37 37
         $this->setSizingClassPrefix('col');
Please login to merge, or discard this patch.
src/Libraries/Ui/Codes/Keyboard.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -33,8 +33,8 @@
 block discarded – undo
33 33
     {
34 34
         parent::__construct('kbd');
35 35
 
36
-        if (isset($attributes[ 'id' ])) {
37
-            $this->entity->setEntityName($attributes[ 'id' ]);
36
+        if (isset($attributes['id'])) {
37
+            $this->entity->setEntityName($attributes['id']);
38 38
         }
39 39
 
40 40
         if (count($attributes)) {
Please login to merge, or discard this patch.
src/Libraries/Ui/Codes/Sample.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -33,8 +33,8 @@
 block discarded – undo
33 33
     {
34 34
         parent::__construct('samp');
35 35
 
36
-        if (isset($attributes[ 'id' ])) {
37
-            $this->entity->setEntityName($attributes[ 'id' ]);
36
+        if (isset($attributes['id'])) {
37
+            $this->entity->setEntityName($attributes['id']);
38 38
         }
39 39
 
40 40
         if (count($attributes)) {
Please login to merge, or discard this patch.
src/Libraries/Ui/Codes/Code.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -33,8 +33,8 @@
 block discarded – undo
33 33
     {
34 34
         parent::__construct('code');
35 35
 
36
-        if (isset($attributes[ 'id' ])) {
37
-            $this->entity->setEntityName($attributes[ 'id' ]);
36
+        if (isset($attributes['id'])) {
37
+            $this->entity->setEntityName($attributes['id']);
38 38
         }
39 39
 
40 40
         if (count($attributes)) {
Please login to merge, or discard this patch.
src/Libraries/Ui/Codes/Variable.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -33,8 +33,8 @@
 block discarded – undo
33 33
     {
34 34
         parent::__construct('var');
35 35
 
36
-        if (isset($attributes[ 'id' ])) {
37
-            $this->entity->setEntityName($attributes[ 'id' ]);
36
+        if (isset($attributes['id'])) {
37
+            $this->entity->setEntityName($attributes['id']);
38 38
         }
39 39
 
40 40
         if (count($attributes)) {
Please login to merge, or discard this patch.