Passed
Push — master ( 708113...83bad9 )
by
unknown
02:12
created
src/Routing/RouteGroup.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -27,7 +27,7 @@
 block discarded – undo
27 27
 	/**
28 28
 	 * Constructor
29 29
 	 *
30
-	 * @param string|ConditionInterface $target
30
+	 * @param string $target
31 31
 	 * @param Closure                   $callable
32 32
 	 */
33 33
 	public function __construct( $target, Closure $callable ) {
Please login to merge, or discard this patch.
src/Middleware/HasMiddlewareTrait.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -48,7 +48,7 @@  discard block
 block discarded – undo
48 48
 	 * Add middleware
49 49
 	 *
50 50
 	 * @param  string|callable|\CarbonFramework\Middleware\MiddlewareInterface|array $middleware
51
-	 * @return object                                                                $this
51
+	 * @return HasMiddlewareTrait                                                                $this
52 52
 	 */
53 53
 	public function addMiddleware( $middleware ) {
54 54
 		$middleware = is_array( $middleware ) ? $middleware : [$middleware];
@@ -67,7 +67,7 @@  discard block
 block discarded – undo
67 67
 	 * Alias for addMiddleware
68 68
 	 *
69 69
 	 * @param  string|callable|\CarbonFramework\Middleware\middlewareInterface|array $middleware
70
-	 * @return object                                                                $this
70
+	 * @return HasMiddlewareTrait                                                                $this
71 71
 	 */
72 72
 	public function add( $middleware ) {
73 73
 		return $this->addMiddleware( $middleware );
Please login to merge, or discard this patch.
src/Routing/Handler.php 1 patch
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -2,9 +2,9 @@
 block discarded – undo
2 2
 
3 3
 namespace CarbonFramework\Routing;
4 4
 
5
+use CarbonFramework\Framework;
5 6
 use Closure;
6 7
 use Exception;
7
-use CarbonFramework\Framework;
8 8
 
9 9
 /**
10 10
  * Represent a callable or a controller method to be executed in response to a request
Please login to merge, or discard this patch.
src/functions.php 1 patch
Doc Comments   +2 added lines patch added patch discarded remove patch
@@ -17,6 +17,7 @@  discard block
 block discarded – undo
17 17
 	/**
18 18
 	 * @codeCoverageIgnore
19 19
 	 * @see Response::output()
20
+	 * @param string $output
20 21
 	 * @return \Psr\Http\Message\ResponseInterface
21 22
 	 */
22 23
 	function cf_output( $output ) {
@@ -28,6 +29,7 @@  discard block
 block discarded – undo
28 29
 	/**
29 30
 	 * @codeCoverageIgnore
30 31
 	 * @see Response::template()
32
+	 * @param string $templates
31 33
 	 * @return \Psr\Http\Message\ResponseInterface
32 34
 	 */
33 35
 	function cf_template( $templates, $context = array() ) {
Please login to merge, or discard this patch.