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 ( 8c3c43...6664b1 )
by Olivier
03:51 queued 02:09
created
lib/Module/ForwardedOperationDispatcher.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -149,7 +149,7 @@
 block discarded – undo
149 149
 	 * @param string $operation_name
150 150
 	 * @param Module $module
151 151
 	 *
152
-	 * @return callable
152
+	 * @return string[]
153 153
 	 *
154 154
 	 * @throws \LogicException If the {@link Operation} instance cannot be resolved.
155 155
 	 */
Please login to merge, or discard this patch.
lib/Module/ModuleCollection.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -862,7 +862,7 @@
 block discarded – undo
862 862
 	 * specified module—if the class exists. If it does, it returns its fully qualified name.
863 863
 	 *
864 864
 	 * @param string $unqualified_classname
865
-	 * @param string|Module $module_id
865
+	 * @param  $module_id
866 866
 	 * @param array $tried
867 867
 	 *
868 868
 	 * @return string|false The resolved file name, or `false` if it could not be resolved.
Please login to merge, or discard this patch.
lib/Module/Operation/SaveOperation.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -31,7 +31,7 @@
 block discarded – undo
31 31
 	 * - CONTROL_OWNERSHIP: true
32 32
 	 * - CONTROL_FORM: true
33 33
 	 *
34
-	 * @return array
34
+	 * @return boolean[]
35 35
 	 */
36 36
 	protected function get_controls()
37 37
 	{
Please login to merge, or discard this patch.
lib/Module/Hooks.php 1 patch
Doc Comments   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -65,7 +65,7 @@  discard block
 block discarded – undo
65 65
 	 * according to the modules features.
66 66
 	 *
67 67
 	 * @param Core\ConfigureEvent $event
68
-	 * @param Core|CoreBindings $app
68
+	 * @param Core $app
69 69
 	 */
70 70
 	static public function on_core_configure(Core\ConfigureEvent $event, Core $app)
71 71
 	{
@@ -97,7 +97,7 @@  discard block
 block discarded – undo
97 97
 	 * paths and the config paths.
98 98
 	 *
99 99
 	 * @param Core\BootEvent $event
100
-	 * @param Core|CoreBindings $app
100
+	 * @param Core $app
101 101
 	 */
102 102
 	static public function on_core_boot(Core\BootEvent $event, Core $app)
103 103
 	{
@@ -230,7 +230,7 @@  discard block
 block discarded – undo
230 230
 	/**
231 231
 	 * Returns the {@link ModelCollection} instance used to obtain the models defined by the modules.
232 232
 	 *
233
-	 * @param Core|CoreBindings|\ICanBoogie\Binding\ActiveRecord\CoreBindings $app
233
+	 * @param Core $app
234 234
 	 *
235 235
 	 * @return ModelCollection The models accessor.
236 236
 	 */
@@ -242,7 +242,7 @@  discard block
 block discarded – undo
242 242
 	/**
243 243
 	 * Return the {@link Module} instance associated with the route handled by the controller.
244 244
 	 *
245
-	 * @param Controller|ControllerBindings $controller
245
+	 * @param Controller $controller
246 246
 	 *
247 247
 	 * @return Module
248 248
 	 */
@@ -254,7 +254,7 @@  discard block
 block discarded – undo
254 254
 	/**
255 255
 	 * Return the primary model of the module associated with the route handled by the controller.
256 256
 	 *
257
-	 * @param Controller|ControllerBindings $controller
257
+	 * @param Controller $controller
258 258
 	 *
259 259
 	 * @return \ICanBoogie\ActiveRecord\Model
260 260
 	 *
@@ -270,7 +270,7 @@  discard block
 block discarded – undo
270 270
 	 *
271 271
 	 * **Note:** The "icanboogie/facets" package is required.
272 272
 	 *
273
-	 * @param Controller|ControllerBindings $controller
273
+	 * @param Controller $controller
274 274
 	 *
275 275
 	 * @return BasicFetcher
276 276
 	 */
@@ -282,7 +282,7 @@  discard block
 block discarded – undo
282 282
 	/**
283 283
 	 * Fetch records using the controller `records_fetcher`.
284 284
 	 *
285
-	 * @param Controller|ControllerBindings $controller
285
+	 * @param Controller $controller
286 286
 	 * @param array $modifiers
287 287
 	 *
288 288
 	 * @return RecordCollection
@@ -297,7 +297,7 @@  discard block
 block discarded – undo
297 297
 	/**
298 298
 	 * Fetch records using the controller `records_fetcher`.
299 299
 	 *
300
-	 * @param Controller|ControllerBindings $controller
300
+	 * @param Controller $controller
301 301
 	 * @param array $modifiers
302 302
 	 * @param Fetcher|null $fetcher Reference to a variable where the fetcher should be stored.
303 303
 	 *
Please login to merge, or discard this patch.
lib/Module.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -211,7 +211,7 @@
 block discarded – undo
211 211
 	 *
212 212
 	 * @param ErrorCollection $errors Error collection.
213 213
 	 *
214
-	 * @return mixed `true` if the module is installed, `false` if the module
214
+	 * @return null|boolean `true` if the module is installed, `false` if the module
215 215
 	 * (or parts of) is not installed, `null` if the module has no installation.
216 216
 	 */
217 217
 	public function is_installed(ErrorCollection $errors)
Please login to merge, or discard this patch.