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 ( 7a10f1...c2f16b )
by
unknown
76:46
created
tests/SystemEvent_FULLTEXTSEARCH_TRACKER_ARTIFACT_DELETETest.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -27,6 +27,9 @@
 block discarded – undo
27 27
         $this->actions = mock('FullTextSearchTrackerActions');
28 28
     }
29 29
 
30
+    /**
31
+     * @param string $parameters
32
+     */
30 33
     public function aSystemEventWithParameter($parameters) {
31 34
         $id = $type = $owner = $priority = $status = $create_date = $process_date = $end_date = $log = null;
32 35
         $event = new SystemEvent_FULLTEXTSEARCH_TRACKER_ARTIFACT_DELETE(
Please login to merge, or discard this patch.
tests/SystemEvent_FULLTEXTSEARCH_TRACKER_REINDEX_PROJECTTest.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -27,6 +27,9 @@
 block discarded – undo
27 27
         $this->actions = mock('FullTextSearchTrackerActions');
28 28
     }
29 29
 
30
+    /**
31
+     * @param string $parameters
32
+     */
30 33
     public function aSystemEventWithParameter($parameters) {
31 34
         $id = $type = $owner = $priority = $status = $create_date = $process_date = $end_date = $log = null;
32 35
         $event = new SystemEvent_FULLTEXTSEARCH_TRACKER_REINDEX_PROJECT(
Please login to merge, or discard this patch.
fulltextsearch/tests/SystemEvent_FULLTEXTSEARCH_TRACKER_REINDEXTest.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -29,6 +29,9 @@
 block discarded – undo
29 29
         $this->tracker_factory = mock('TrackerFactory');
30 30
     }
31 31
 
32
+    /**
33
+     * @param string $parameters
34
+     */
32 35
     public function aSystemEventWithParameter($parameters) {
33 36
         $id = $type = $owner = $priority = $status = $create_date = $process_date = $end_date = $log = null;
34 37
         $event = new SystemEvent_FULLTEXTSEARCH_TRACKER_REINDEX(
Please login to merge, or discard this patch.
tests/SystemEvent_FULLTEXTSEARCH_TRACKER_TRACKER_DELETETest.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -27,6 +27,9 @@
 block discarded – undo
27 27
         $this->actions = mock('FullTextSearchTrackerActions');
28 28
     }
29 29
 
30
+    /**
31
+     * @param string $parameters
32
+     */
30 33
     public function aSystemEventWithParameter($parameters) {
31 34
         $id = $type = $owner = $priority = $status = $create_date = $process_date = $end_date = $log = null;
32 35
         $event = new SystemEvent_FULLTEXTSEARCH_TRACKER_TRACKER_DELETE(
Please login to merge, or discard this patch.
fulltextsearch/tests/SystemEvent_FULLTEXTSEARCH_WIKI_REINDEXTest.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -27,6 +27,9 @@
 block discarded – undo
27 27
         $this->actions = mock('FullTextSearchWikiActions');
28 28
     }
29 29
 
30
+    /**
31
+     * @param string $parameters
32
+     */
30 33
     public function aSystemEventWithParameter($parameters) {
31 34
         $id = $type = $owner = $priority = $status = $create_date = $process_date = $end_date = $log = null;
32 35
         $event = new SystemEvent_FULLTEXTSEARCH_WIKI_REINDEX_PROJECT(
Please login to merge, or discard this patch.
plugins/fulltextsearch/tests/SystemEvent_FULLTEXTSEARCH_WIKITest.class.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -32,6 +32,9 @@
 block discarded – undo
32 32
         $this->actions   = mock('FullTextSearchWikiActions');
33 33
     }
34 34
 
35
+    /**
36
+     * @param string $parameters
37
+     */
35 38
     public function aSystemEventWithParameter($parameters) {
36 39
         $id = $type = $owner = $priority = $status = $create_date = $process_date = $end_date = $log = null;
37 40
         $event = partial_mock(
Please login to merge, or discard this patch.
plugins/fusionforge_compat/include/arc/ARC2.php 1 patch
Doc Comments   +12 added lines patch added patch discarded remove patch
@@ -17,6 +17,9 @@  discard block
 block discarded – undo
17 17
 
18 18
   /*  */
19 19
   
20
+  /**
21
+   * @param string $val
22
+   */
20 23
   function setStatic($val) {
21 24
     static $arc_static = '';
22 25
     if ($val) $arc_static = $val;   /* set */
@@ -353,6 +356,9 @@  discard block
 block discarded – undo
353 356
 
354 357
   /*  */
355 358
 
359
+  /**
360
+   * @param string $name
361
+   */
356 362
   function getComponent($name, $a = '', $caller = '') {
357 363
     ARC2::inc($name);
358 364
     $prefix = 'ARC2';
@@ -379,6 +385,9 @@  discard block
 block discarded – undo
379 385
 
380 386
   /* parsers */
381 387
 
388
+  /**
389
+   * @param string $prefix
390
+   */
382 391
   function getParser($prefix, $a = '') {
383 392
     return ARC2::getComponent($prefix . 'Parser', $a);
384 393
   }
@@ -451,6 +460,9 @@  discard block
 block discarded – undo
451 460
   
452 461
   /* serializers */
453 462
 
463
+  /**
464
+   * @param string $prefix
465
+   */
454 466
   function getSer($prefix, $a = '') {
455 467
     return ARC2::getComponent($prefix . 'Serializer', $a);
456 468
   }
Please login to merge, or discard this patch.
plugins/fusionforge_compat/include/arc/ARC2_Class.php 1 patch
Doc Comments   +20 added lines patch added patch discarded remove patch
@@ -53,6 +53,9 @@  discard block
 block discarded – undo
53 53
     return isset($o->$name) ? $o->$name : $default;
54 54
   }
55 55
   
56
+  /**
57
+   * @param string $name
58
+   */
56 59
   function v1($name, $default = false, $o = false) {/* value if 1 (= not empty) */
57 60
     if ($o === false) $o =& $this;
58 61
     if (is_array($o)) {
@@ -61,6 +64,9 @@  discard block
 block discarded – undo
61 64
     return (isset($o->$name) && $o->$name) ? $o->$name : $default;
62 65
   }
63 66
   
67
+  /**
68
+   * @param string $name
69
+   */
64 70
   function m($name, $a = false, $default = false, $o = false) {/* call method */
65 71
     if ($o === false) $o =& $this;
66 72
     return method_exists($o, $name) ? $o->$name($a) : $default;
@@ -83,6 +89,11 @@  discard block
 block discarded – undo
83 89
     return $r;
84 90
   }
85 91
 
92
+  /**
93
+   * @param string $v
94
+   *
95
+   * @return string
96
+   */
86 97
   function deCamelCase($v, $uc_first = 0) {
87 98
     $r = str_replace('_', ' ', $v);
88 99
     $r = preg_replace('/([a-z0-9])([A-Z])/e', '"\\1 " . strtolower("\\2")', $r);
@@ -103,6 +114,9 @@  discard block
 block discarded – undo
103 114
 
104 115
   /*  */
105 116
   
117
+  /**
118
+   * @param string $v
119
+   */
106 120
   function addError($v) {
107 121
     if (!in_array($v, $this->errors)) {
108 122
       $this->errors[] = $v;
@@ -140,6 +154,9 @@  discard block
 block discarded – undo
140 154
 
141 155
   /*  */
142 156
 
157
+  /**
158
+   * @return string
159
+   */
143 160
   function getPName($v, $connector = ':') {
144 161
     /* is already a pname */
145 162
     if ($ns = $this->getPNameNamespace($v, $connector)) {
@@ -174,6 +191,9 @@  discard block
 block discarded – undo
174 191
     return $this->ns[$m[1]];
175 192
   }
176 193
 
194
+  /**
195
+   * @param string $ns
196
+   */
177 197
   function getPrefix($ns) {
178 198
     if (!isset($this->nsp[$ns])) {
179 199
       $this->ns['ns' . $this->ns_count] = $ns;
Please login to merge, or discard this patch.
plugins/fusionforge_compat/include/arc/ARC2_Reader.php 1 patch
Doc Comments   +21 added lines patch added patch discarded remove patch
@@ -40,22 +40,37 @@  discard block
 block discarded – undo
40 40
 
41 41
   /*  */
42 42
   
43
+  /**
44
+   * @param string $v
45
+   */
43 46
   function setHTTPMethod($v) {
44 47
     $this->http_method = $v;
45 48
   }
46 49
 
50
+  /**
51
+   * @param string $v
52
+   */
47 53
   function setMessageBody($v) {
48 54
     $this->message_body = $v;
49 55
   }
50 56
 
57
+  /**
58
+   * @param string $v
59
+   */
51 60
   function setAcceptHeader($v) {
52 61
     $this->http_accept_header = $v;
53 62
   }
54 63
 
64
+  /**
65
+   * @param string $v
66
+   */
55 67
   function setCustomHeaders($v) {
56 68
     $this->http_custom_headers = $v;
57 69
   }
58 70
 
71
+  /**
72
+   * @param string $v
73
+   */
59 74
   function addCustomHeaders($v) {
60 75
     if ($this->http_custom_headers) $this->http_custom_headers .= "\r\n";
61 76
     $this->http_custom_headers .= $v;
@@ -189,6 +204,9 @@  discard block
 block discarded – undo
189 204
     $this->stream = ($data) ? $this->getDataStream($data) : $this->getSocketStream($this->base);
190 205
   }
191 206
 
207
+  /**
208
+   * @param string $data
209
+   */
192 210
   function getDataStream($data) {
193 211
     return array('type' => 'data', 'pos' => 0, 'headers' => array(), 'size' => strlen($data), 'data' => $data, 'buffer' => '');
194 212
   }
@@ -399,6 +417,9 @@  discard block
 block discarded – undo
399 417
     
400 418
   /*  */
401 419
 
420
+  /**
421
+   * @return boolean
422
+   */
402 423
   function getResponseHeaders() {
403 424
     if (isset($this->stream) && isset($this->stream['headers'])) {
404 425
       return $this->stream['headers'];
Please login to merge, or discard this patch.