@@ -36,7 +36,7 @@ discard block |
||
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 |
||
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 |
||
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() { |
@@ -26,7 +26,6 @@ |
||
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; |
@@ -36,7 +36,6 @@ |
||
36 | 36 | /** |
37 | 37 | * Execute the handler |
38 | 38 | * |
39 | - * @param mixed $arguments,... |
|
40 | 39 | * @return mixed |
41 | 40 | */ |
42 | 41 | public function execute() { |
@@ -83,7 +83,6 @@ |
||
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 ) { |