Passed
Push — master ( db8d74...f13993 )
by Atanas
01:54
created
src/Helpers/Handler.php 1 patch
Doc Comments   +2 added lines, -3 removed lines patch added patch discarded remove patch
@@ -36,7 +36,7 @@  discard block
 block discarded – undo
36 36
 	/**
37 37
 	 * Parse a raw handler to a Closure or a [class, method] array
38 38
 	 *
39
-	 * @param  string|Closure     $handler
39
+	 * @param  string|Closure     $raw_handler
40 40
 	 * @return array|Closure|null
41 41
 	 */
42 42
 	protected function parse( $raw_handler ) {
@@ -54,7 +54,7 @@  discard block
 block discarded – undo
54 54
 	/**
55 55
 	 * Parse a raw string handler to a [class, method] array
56 56
 	 *
57
-	 * @param  string     $handler
57
+	 * @param  string     $raw_handler
58 58
 	 * @return array|null
59 59
 	 */
60 60
 	protected function parseFromString( $raw_handler ) {
@@ -82,7 +82,6 @@  discard block
 block discarded – undo
82 82
 	/**
83 83
 	 * Execute the parsed handler with any provided arguments and return the result
84 84
 	 *
85
-	 * @param  mixed $arguments,...
86 85
 	 * @return mixed
87 86
 	 */
88 87
 	public function execute() {
Please login to merge, or discard this patch.
src/Routing/Conditions/Custom.php 1 patch
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -26,7 +26,6 @@
 block discarded – undo
26 26
 	 * Constructor
27 27
 	 *
28 28
 	 * @param callable $callable
29
-	 * @param mixed    $arguments,...
30 29
 	 */
31 30
 	public function __construct( $callable ) {
32 31
 		$this->callable = $callable;
Please login to merge, or discard this patch.
src/Routing/Handler.php 1 patch
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -36,7 +36,6 @@
 block discarded – undo
36 36
 	/**
37 37
 	 * Execute the handler
38 38
 	 *
39
-	 * @param  mixed $arguments,...
40 39
 	 * @return mixed
41 40
 	 */
42 41
 	public function execute() {
Please login to merge, or discard this patch.
src/View/View.php 1 patch
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -83,7 +83,6 @@
 block discarded – undo
83 83
 	 * Passes all arguments to the composer.
84 84
 	 *
85 85
 	 * @param  string $view
86
-	 * @param  mixed  $arguments,...
87 86
 	 * @return array
88 87
 	 */
89 88
 	public function compose( $view ) {
Please login to merge, or discard this patch.