Completed
Push — develop ( ee8f39...b34707 )
by Mark
06:39
created
src/BaseApplication.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -69,7 +69,7 @@
 block discarded – undo
69 69
 	/**
70 70
 	 * Figure out what to do with a request
71 71
 	 *
72
-	 * @return \yolk\app\Response
72
+	 * @return Response
73 73
 	 */
74 74
 	public function dispatch( Request $request ) {
75 75
 		$response = parent::dispatch( $request );
Please login to merge, or discard this patch.
src/BaseDispatcher.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -243,7 +243,7 @@  discard block
 block discarded – undo
243 243
 	/**
244 244
 	 * Determines if the specified handler is a controller class/method handler
245 245
 	 * in the format Foo::bar
246
-	 * @param  mixed  $handler
246
+	 * @param  callable  $handler
247 247
 	 * @return boolean
248 248
 	 */
249 249
 	protected function isControllerClassHandler( $handler ) {
@@ -252,7 +252,7 @@  discard block
 block discarded – undo
252 252
 
253 253
 	/**
254 254
 	 * Determines if the specified handler is an instance of the Controller interface.
255
-	 * @param  mixed  $handler
255
+	 * @param  callable  $handler
256 256
 	 * @return boolean
257 257
 	 */
258 258
 	protected function isControllerInstanceHandler( $handler ) {
Please login to merge, or discard this patch.