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 ( e0baf9...7f2ebd )
by James
03:10
created
src/Server/Server.php 1 patch
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -265,7 +265,6 @@
 block discarded – undo
265 265
     /**
266 266
      * Sets the regexp that will match the inclusion directives.
267 267
      *
268
-     * @param string $simpleDirective the regexp that will match the inclusion directives
269 268
      */
270 269
     public function setInclusionDirective($inclusionDirective)
271 270
     {
Please login to merge, or discard this patch.
src/Server/ServerInterface.php 1 patch
Doc Comments   +9 added lines, -1 removed lines patch added patch discarded remove patch
@@ -40,6 +40,7 @@  discard block
 block discarded – undo
40 40
      * @throws ServerException if the prefix is invalid
41 41
      *
42 42
      * @param string $prefix the filesystem path where the web server is installed
43
+     * @return Server
43 44
      */
44 45
     public function setPrefix($prefix);
45 46
 
@@ -54,6 +55,7 @@  discard block
 block discarded – undo
54 55
      * Sets the regexp that will match the starting block directives.
55 56
      *
56 57
      * @param string $startMultiLine the regexp that will match the starting block directives
58
+     * @return Server
57 59
      */
58 60
     public function setStartMultiLine($startMultiLine);
59 61
 
@@ -68,6 +70,7 @@  discard block
 block discarded – undo
68 70
      * Sets the regexp that will match the ending block directives.
69 71
      *
70 72
      * @param string $endMultiLine the regexp that will match the ending block directives
73
+     * @return Server
71 74
      */
72 75
     public function setEndMultiLine($endMultiLine);
73 76
 
@@ -82,6 +85,7 @@  discard block
 block discarded – undo
82 85
      * Sets the regexp that will match the simple directives.
83 86
      *
84 87
      * @param string $simpleDirective the regexp that will match the simple directives
88
+     * @return Server
85 89
      */
86 90
     public function setSimpleDirective($simpleDirective);
87 91
 
@@ -95,7 +99,7 @@  discard block
 block discarded – undo
95 99
     /**
96 100
      * Sets the regexp that will match the inclusion directives.
97 101
      *
98
-     * @param string $simpleDirective the regexp that will match the inclusion directives
102
+     * @return Server
99 103
      */
100 104
     public function setInclusionDirective($inclusionDirective);
101 105
 
@@ -110,6 +114,7 @@  discard block
 block discarded – undo
110 114
      * Sets the list of binaries that can be run to analyze.
111 115
      *
112 116
      * @param array $binaries list of controlers
117
+     * @return Server
113 118
      */
114 119
     public function setBinaries(array $binaries);
115 120
 
@@ -124,6 +129,7 @@  discard block
 block discarded – undo
124 129
      * Sets the parameter string to use to detect version and config file.
125 130
      *
126 131
      * @param string $parameter parameter string
132
+     * @return Server
127 133
      */
128 134
     public function setDetectionParameter($parameter = '');
129 135
 
@@ -138,6 +144,7 @@  discard block
 block discarded – undo
138 144
      * Sets the ordered list of methods to apply before the config file turns into an array.
139 145
      *
140 146
      * @param array $methods the ordered list of methods to apply before convertion
147
+     * @return Server
141 148
      */
142 149
     public function setBeforeMethods(array $methods);
143 150
 
@@ -152,6 +159,7 @@  discard block
 block discarded – undo
152 159
      * Sets the ordered list of methods to apply after the config file has turned into an array.
153 160
      *
154 161
      * @param array $methods the ordered list of methods to apply after convertion
162
+     * @return Server
155 163
      */
156 164
     public function setAfterMethods(array $methods);
157 165
 }
Please login to merge, or discard this patch.