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 ( e17822...fa92af )
by Gilmar
23:48
created
src/Input/InputAbstract.php 1 patch
Doc Comments   +6 added lines patch added patch discarded remove patch
@@ -65,11 +65,17 @@
 block discarded – undo
65 65
         return $this->setCostsByArray(($this->costs) ? $this->costs : $defaultCosts);
66 66
     }
67 67
 
68
+    /**
69
+     * @param Costs $value
70
+     */
68 71
     public function setCosts($value)
69 72
     {
70 73
         return $this->set('costs', $value);
71 74
     }
72 75
 
76
+    /**
77
+     * @param string $key
78
+     */
73 79
     protected function set($key, $value)
74 80
     {
75 81
         $this->$key = $value;
Please login to merge, or discard this patch.
src/SimilarityAbstract.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -62,6 +62,9 @@
 block discarded – undo
62 62
         return $this->input;
63 63
     }
64 64
 
65
+    /**
66
+     * @param string $name
67
+     */
65 68
     protected function factoryExpert($name)
66 69
     {
67 70
         $expertObject = __NAMESPACE__.'\\Similar'.ucfirst($name);
Please login to merge, or discard this patch.
src/Input/Decorator.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -32,11 +32,11 @@
 block discarded – undo
32 32
 
33 33
     public function stripStopwords($string, $list)
34 34
     {
35
-        usort($list, function ($a, $b) {
35
+        usort($list, function($a, $b) {
36 36
             return strlen($b) - strlen($a);
37 37
         });
38 38
 
39
-        $addSpaces = function (&$v) {
39
+        $addSpaces = function(&$v) {
40 40
             $v = ' '.trim($v).' ';
41 41
 
42 42
             return $v;
Please login to merge, or discard this patch.