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 ( b6e199...cdeb1d )
by James
03:26
created
src/JamesMoss/Flywheel/NestedRepository.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -124,6 +124,9 @@
 block discarded – undo
124 124
         return (boolean)preg_match('/^[^\\/]?[^\\?\\*:;{}\\\\\\n]+[^\\/]$/us', $id);
125 125
     }
126 126
 
127
+    /**
128
+     * @param string $dir
129
+     */
127 130
     protected function getFilesRecursive($dir, array &$result, $ext)
128 131
     {
129 132
         $extensionLength = strlen($ext) + 1; // one is for the dot!
Please login to merge, or discard this patch.
src/JamesMoss/Flywheel/Predicate.php 1 patch
Doc Comments   +7 added lines patch added patch discarded remove patch
@@ -35,6 +35,10 @@  discard block
 block discarded – undo
35 35
         return $this;
36 36
     }
37 37
 
38
+    /**
39
+     * @param string $operator
40
+     * @param string $value
41
+     */
38 42
     public function orWhere($field, $operator = null, $value = null)
39 43
     {
40 44
         $this->addPredicate(self::LOGICAL_OR, $field, $operator, $value);
@@ -42,6 +46,9 @@  discard block
 block discarded – undo
42 46
         return $this;
43 47
     }
44 48
 
49
+    /**
50
+     * @param string $type
51
+     */
45 52
     protected function addPredicate($type, $field, $operator = null, $value = null)
46 53
     {
47 54
         if (!$this->predicates) {
Please login to merge, or discard this patch.