Passed
Push — master ( a8bd8b...f2f9a5 )
by Atanas
02:01
created
src/Routing/RouteGroup.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -28,7 +28,7 @@
 block discarded – undo
28 28
 	 * Constructor
29 29
 	 *
30 30
 	 * @throws Exception
31
-	 * @param  string|ConditionInterface $target
31
+	 * @param  string $target
32 32
 	 * @param  Closure                   $closure
33 33
 	 */
34 34
 	public function __construct( $target, Closure $closure ) {
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/Helpers/Handler.php 1 patch
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -82,7 +82,6 @@
 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/View/PhpViewEngine.php 2 patches
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -45,7 +45,7 @@
 block discarded – undo
45 45
 	 * @param  string $name
46 46
 	 * @param  string $filepath
47 47
 	 * @param  array  $context
48
-	 * @return string
48
+	 * @return PhpView
49 49
 	 */
50 50
 	protected function makeView( $name, $filepath, $context = [] ) {
51 51
 		return (new PhpView())
Please login to merge, or discard this patch.
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -3,7 +3,6 @@
 block discarded – undo
3 3
 namespace WPEmerge\View;
4 4
 
5 5
 use Exception;
6
-use View as ViewService;
7 6
 
8 7
 /**
9 8
  * Render view files with php.
Please login to merge, or discard this patch.
src/View/ViewService.php 1 patch
Unused Use Statements   -2 removed lines patch added patch discarded remove patch
@@ -6,8 +6,6 @@
 block discarded – undo
6 6
 use ViewEngine;
7 7
 use WPEmerge\Helpers\Handler;
8 8
 use WPEmerge\Helpers\Mixed;
9
-use WPEmerge\Helpers\Path;
10
-use WPEmerge\Support\Arr;
11 9
 
12 10
 /**
13 11
  * Provide general view-related functionality
Please login to merge, or discard this patch.