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 ( cf9260...b52382 )
by
unknown
03:19
created
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.
src/Libraries/Ui/Codes/Pre.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('pre');
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/Components/Form/Fieldset.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -37,8 +37,8 @@
 block discarded – undo
37 37
     {
38 38
         parent::__construct('fieldset');
39 39
 
40
-        if (isset($attributes[ 'id' ])) {
41
-            $this->entity->setEntityName($attributes[ 'id' ]);
40
+        if (isset($attributes['id'])) {
41
+            $this->entity->setEntityName($attributes['id']);
42 42
         }
43 43
 
44 44
         if (count($attributes)) {
Please login to merge, or discard this patch.
src/Libraries/Ui/Components/Form/Group.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -38,8 +38,8 @@
 block discarded – undo
38 38
     {
39 39
         parent::__construct('div');
40 40
 
41
-        if (isset($attributes[ 'id' ])) {
42
-            $this->entity->setEntityName($attributes[ 'id' ]);
41
+        if (isset($attributes['id'])) {
42
+            $this->entity->setEntityName($attributes['id']);
43 43
         }
44 44
 
45 45
         if (count($attributes)) {
Please login to merge, or discard this patch.
src/Libraries/Ui/Components/Form/Fieldset/Legend.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('legend');
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/Components/Form/Elements/Checkbox.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -49,10 +49,10 @@
 block discarded – undo
49 49
             'type'  => 'checkbox',
50 50
         ]);
51 51
 
52
-        if (isset($attributes[ 'id' ])) {
53
-            $this->entity->setEntityName('input-' . $attributes[ 'id' ]);
54
-        } elseif (isset($attributes[ 'name' ])) {
55
-            $this->entity->setEntityName('input-' . $attributes[ 'name' ]);
52
+        if (isset($attributes['id'])) {
53
+            $this->entity->setEntityName('input-' . $attributes['id']);
54
+        } elseif (isset($attributes['name'])) {
55
+            $this->entity->setEntityName('input-' . $attributes['name']);
56 56
         }
57 57
 
58 58
         if (count($attributes)) {
Please login to merge, or discard this patch.
src/Libraries/Ui/Components/Form/Elements/Input.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -32,10 +32,10 @@
 block discarded – undo
32 32
     {
33 33
         parent::__construct('input');
34 34
 
35
-        if (isset($attributes[ 'id' ])) {
36
-            $this->entity->setEntityName('input-' . $attributes[ 'id' ]);
37
-        } elseif (isset($attributes[ 'name' ])) {
38
-            $this->entity->setEntityName('input-' . $attributes[ 'name' ]);
35
+        if (isset($attributes['id'])) {
36
+            $this->entity->setEntityName('input-' . $attributes['id']);
37
+        } elseif (isset($attributes['name'])) {
38
+            $this->entity->setEntityName('input-' . $attributes['name']);
39 39
         }
40 40
 
41 41
         if (count($attributes)) {
Please login to merge, or discard this patch.
src/Libraries/Ui/Components/Form/Elements/Output.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -33,10 +33,10 @@
 block discarded – undo
33 33
     {
34 34
         parent::__construct('output');
35 35
 
36
-        if (isset($attributes[ 'id' ])) {
37
-            $this->entity->setEntityName('output-' . $attributes[ 'id' ]);
38
-        } elseif (isset($attributes[ 'name' ])) {
39
-            $this->entity->setEntityName('output-' . $attributes[ 'name' ]);
36
+        if (isset($attributes['id'])) {
37
+            $this->entity->setEntityName('output-' . $attributes['id']);
38
+        } elseif (isset($attributes['name'])) {
39
+            $this->entity->setEntityName('output-' . $attributes['name']);
40 40
         }
41 41
 
42 42
         if (count($attributes)) {
Please login to merge, or discard this patch.
src/Libraries/Ui/Components/Form/Elements/Custom/Checkbox.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -32,7 +32,7 @@
 block discarded – undo
32 32
 
33 33
         $this->attributes->addAttributeClass(['custom-control', 'custom-checkbox']);
34 34
 
35
-        $attributes[ 'type' ] = 'checkbox';
35
+        $attributes['type'] = 'checkbox';
36 36
 
37 37
         $checkbox = new Input();
38 38
         $checkbox->attributes->removeAttributeClass('form-control');
Please login to merge, or discard this patch.