Completed
Push — master ( cb49b4...0fd3b2 )
by Maciej
02:19
created
src/Artisan/FormArtisan.php 2 patches
Doc Comments   +5 added lines, -6 removed lines patch added patch discarded remove patch
@@ -69,7 +69,7 @@  discard block
 block discarded – undo
69 69
 	 *
70 70
 	 * @since 0.10.0
71 71
 	 *
72
-	 * @return WFV\FormComposite
72
+	 * @return FormComposite
73 73
 	 */
74 74
 	public function actualize() {
75 75
 		return $this->form;
@@ -80,8 +80,7 @@  discard block
 block discarded – undo
80 80
 	 *
81 81
 	 * @since 0.10.0
82 82
 	 *
83
-	 * @param string $action
84
-	 * @return WFV\Artisan\FormArtisan
83
+	 * @return FormArtisan
85 84
 	 */
86 85
 	public function create() {
87 86
 		$this->form = new FormComposite( $this );
@@ -94,7 +93,7 @@  discard block
 block discarded – undo
94 93
 	 *
95 94
 	 * @since 0.10.0
96 95
 	 *
97
-	 * @return WFV\Artisan\FormArtisan
96
+	 * @return FormArtisan
98 97
 	 */
99 98
 	public function errors() {
100 99
 		$this->collection['errors'] = new ErrorCollection( $this->labels() );
@@ -107,7 +106,7 @@  discard block
 block discarded – undo
107 106
 	 *
108 107
 	 * @since 0.10.0
109 108
 	 *
110
-	 * @return WFV\Artisan\FormArtisan
109
+	 * @return FormArtisan
111 110
 	 */
112 111
 	public function input() {
113 112
 		$guard = new InspectionAgent( $this->action );
@@ -121,7 +120,7 @@  discard block
 block discarded – undo
121 120
 	 *
122 121
 	 * @since 0.10.0
123 122
 	 *
124
-	 * @return WFV\Artisan\FormArtisan
123
+	 * @return FormArtisan
125 124
 	 */
126 125
 	public function rules() {
127 126
 		$this->collection['rules'] = new RuleCollection( $this->config );
Please login to merge, or discard this patch.
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -7,7 +7,6 @@
 block discarded – undo
7 7
 use WFV\Collection\ErrorCollection;
8 8
 use WFV\Collection\InputCollection;
9 9
 use WFV\Collection\RuleCollection;
10
-
11 10
 use WFV\FormComposite;
12 11
 
13 12
 /**
Please login to merge, or discard this patch.
src/FormComposite.php 2 patches
Doc Comments   +4 added lines, -2 removed lines patch added patch discarded remove patch
@@ -36,7 +36,7 @@  discard block
 block discarded – undo
36 36
 	 *
37 37
 	 * @since 0.10.0
38 38
 	 *
39
-	 * @param ArtisanInterface $builder
39
+	 * @param FormArtisan $builder
40 40
 	 */
41 41
 	public function __construct( FormArtisan $builder ) {
42 42
 		$this->alias = $builder->action;
@@ -89,7 +89,7 @@  discard block
 block discarded – undo
89 89
 	 *
90 90
 	 * @since 0.10.0
91 91
 	 *
92
-	 * @return WFV\Collection\InputCollection
92
+	 * @return Collection\InputCollection
93 93
 	 */
94 94
 	public function input() {
95 95
 		return $this->utilize('input');
@@ -153,6 +153,8 @@  discard block
 block discarded – undo
153 153
 	 * @param string $response
154 154
 	 * @param string (optional) $field
155 155
 	 * @param string (optional) $value
156
+	 * @param string $field
157
+	 * @param string $value
156 158
 	 * @return string|null
157 159
 	 */
158 160
 	protected function string_or_null( $response, $field = null, $value = null ) {
Please login to merge, or discard this patch.
Unused Use Statements   -2 removed lines patch added patch discarded remove patch
@@ -3,8 +3,6 @@
 block discarded – undo
3 3
 defined( 'ABSPATH' ) || die();
4 4
 
5 5
 use WFV\Artisan\FormArtisan;
6
-use WFV\Contract\ValidateInterface;
7
-use WFV\RuleFactory;
8 6
 
9 7
 /**
10 8
  * Form Composition
Please login to merge, or discard this patch.
wfv-validate.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -17,7 +17,6 @@
 block discarded – undo
17 17
 
18 18
 require_once WFV_VALIDATE__PLUGIN_DIR . '/vendor/autoload.php';
19 19
 
20
-use WFV\FormComposite;
21 20
 use WFV\RuleFactory;
22 21
 use WFV\Validator;
23 22
 use WFV\Artisan\Director;
Please login to merge, or discard this patch.