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
Branch dev (5375e1)
by Андрей
17:41
created
src/Loader/CallbackWorkflowFactory/WorkflowConfig.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -1,8 +1,8 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * @link https://github.com/old-town/old-town-workflow
4
- * @author  Malofeykin Andrey  <[email protected]>
5
- */
3
+     * @link https://github.com/old-town/old-town-workflow
4
+     * @author  Malofeykin Andrey  <[email protected]>
5
+     */
6 6
 namespace OldTown\Workflow\Loader\CallbackWorkflowFactory;
7 7
 
8 8
 use OldTown\Workflow\Loader\WorkflowDescriptor;
Please login to merge, or discard this patch.
src/Loader/ConditionDescriptor.php 2 patches
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -1,8 +1,8 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * @link https://github.com/old-town/old-town-workflow
4
- * @author  Malofeykin Andrey  <[email protected]>
5
- */
3
+     * @link https://github.com/old-town/old-town-workflow
4
+     * @author  Malofeykin Andrey  <[email protected]>
5
+     */
6 6
 namespace OldTown\Workflow\Loader;
7 7
 
8 8
 use DOMElement;
Please login to merge, or discard this patch.
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -62,7 +62,7 @@  discard block
 block discarded – undo
62 62
         $this->parseArgs($condition);
63 63
 
64 64
         if ($condition->hasAttribute('negate')) {
65
-            $n =  XmlUtil::getRequiredAttributeValue($condition, 'negate');
65
+            $n = XmlUtil::getRequiredAttributeValue($condition, 'negate');
66 66
             $nNormalize = strtolower($n);
67 67
 
68 68
             $this->negate = ('true' === $nNormalize || 'yes' === $nNormalize);
@@ -86,7 +86,7 @@  discard block
 block discarded – undo
86 86
      */
87 87
     public function setNegate($negate)
88 88
     {
89
-        $this->negate = (boolean)$negate;
89
+        $this->negate = (boolean) $negate;
90 90
 
91 91
         return $this;
92 92
     }
Please login to merge, or discard this patch.
src/Loader/ConditionalResultDescriptor.php 2 patches
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -1,8 +1,8 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * @link https://github.com/old-town/old-town-workflow
4
- * @author  Malofeykin Andrey  <[email protected]>
5
- */
3
+     * @link https://github.com/old-town/old-town-workflow
4
+     * @author  Malofeykin Andrey  <[email protected]>
5
+     */
6 6
 namespace OldTown\Workflow\Loader;
7 7
 
8 8
 use DOMElement;
Please login to merge, or discard this patch.
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -123,7 +123,7 @@  discard block
 block discarded – undo
123 123
                 $sName = $stepDescriptor->getName();
124 124
             }
125 125
 
126
-            $result  = sprintf('step #%s [%s]', $step, $sName);
126
+            $result = sprintf('step #%s [%s]', $step, $sName);
127 127
             return $result;
128 128
         }
129 129
     }
@@ -140,7 +140,7 @@  discard block
 block discarded – undo
140 140
     {
141 141
         parent::validate();
142 142
 
143
-        $conditions =  $this->getConditions();
143
+        $conditions = $this->getConditions();
144 144
         if (0 === $conditions->count()) {
145 145
             $actionDescriptor = $this->getParent();
146 146
             if (!$actionDescriptor instanceof ActionDescriptor) {
Please login to merge, or discard this patch.
src/Loader/ConditionsDescriptor.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -1,8 +1,8 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * @link https://github.com/old-town/old-town-workflow
4
- * @author  Malofeykin Andrey  <[email protected]>
5
- */
3
+     * @link https://github.com/old-town/old-town-workflow
4
+     * @author  Malofeykin Andrey  <[email protected]>
5
+     */
6 6
 namespace OldTown\Workflow\Loader;
7 7
 
8 8
 use DOMElement;
Please login to merge, or discard this patch.
src/Loader/DescriptorFactory.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -1,8 +1,8 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * @link https://github.com/old-town/old-town-workflow
4
- * @author  Malofeykin Andrey  <[email protected]>
5
- */
3
+     * @link https://github.com/old-town/old-town-workflow
4
+     * @author  Malofeykin Andrey  <[email protected]>
5
+     */
6 6
 namespace OldTown\Workflow\Loader;
7 7
 
8 8
 use DOMElement;
Please login to merge, or discard this patch.
src/Loader/FunctionDescriptor.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -1,8 +1,8 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * @link    https://github.com/old-town/old-town-workflow
4
- * @author  Malofeykin Andrey  <[email protected]>
5
- */
3
+     * @link    https://github.com/old-town/old-town-workflow
4
+     * @author  Malofeykin Andrey  <[email protected]>
5
+     */
6 6
 namespace OldTown\Workflow\Loader;
7 7
 
8 8
 use DOMElement;
Please login to merge, or discard this patch.
src/Loader/JoinDescriptor.php 2 patches
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -1,8 +1,8 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * @link https://github.com/old-town/old-town-workflow
4
- * @author  Malofeykin Andrey  <[email protected]>
5
- */
3
+     * @link https://github.com/old-town/old-town-workflow
4
+     * @author  Malofeykin Andrey  <[email protected]>
5
+     */
6 6
 namespace OldTown\Workflow\Loader;
7 7
 
8 8
 use DOMElement;
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -142,7 +142,7 @@
 block discarded – undo
142 142
             $errMsg = 'Отсутствует атрибут id';
143 143
             throw new InvalidDescriptorException($errMsg);
144 144
         }
145
-        $id =  $this->getId();
145
+        $id = $this->getId();
146 146
         $descriptor->setAttribute('id', $id);
147 147
 
148 148
         $conditions = $this->getConditions();
Please login to merge, or discard this patch.
src/Loader/PermissionDescriptor.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -1,8 +1,8 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * @link https://github.com/old-town/old-town-workflow
4
- * @author  Malofeykin Andrey  <[email protected]>
5
- */
3
+     * @link https://github.com/old-town/old-town-workflow
4
+     * @author  Malofeykin Andrey  <[email protected]>
5
+     */
6 6
 namespace OldTown\Workflow\Loader;
7 7
 
8 8
 use DOMElement;
Please login to merge, or discard this patch.
src/Loader/RegisterDescriptor.php 2 patches
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -1,8 +1,8 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * @link https://github.com/old-town/old-town-workflow
4
- * @author  Malofeykin Andrey  <[email protected]>
5
- */
3
+     * @link https://github.com/old-town/old-town-workflow
4
+     * @author  Malofeykin Andrey  <[email protected]>
5
+     */
6 6
 namespace OldTown\Workflow\Loader;
7 7
 
8 8
 use DOMElement;
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -78,7 +78,7 @@
 block discarded – undo
78 78
      */
79 79
     public function setVariableName($variableName)
80 80
     {
81
-        $this->variableName = (string)$variableName;
81
+        $this->variableName = (string) $variableName;
82 82
 
83 83
         return $this;
84 84
     }
Please login to merge, or discard this patch.