Completed
Push — master ( 5af635...fb8d5a )
by Maciej
13s
created
src/Artisan/FormArtisan.php 1 patch
Doc Comments   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -80,7 +80,7 @@  discard block
 block discarded – undo
80 80
 	 * @since 0.10.0
81 81
 	 *
82 82
 	 * @param string $action
83
-	 * @return WFV\Artisan\FormArtisan
83
+	 * @return FormArtisan
84 84
 	 */
85 85
 	public function create( $action ) {
86 86
 		$this->form = new FormComposite( $this, $action );
@@ -93,7 +93,7 @@  discard block
 block discarded – undo
93 93
 	 *
94 94
 	 * @since 0.10.0
95 95
 	 *
96
-	 * @return WFV\Artisan\FormArtisan
96
+	 * @return FormArtisan
97 97
 	 */
98 98
 	public function errors() {
99 99
 		$this->collection['errors'] = new ErrorCollection( $this->labels() );
@@ -107,7 +107,7 @@  discard block
 block discarded – undo
107 107
 	 * @since 0.10.0
108 108
 	 *
109 109
 	 * @param array $data
110
-	 * @return WFV\Artisan\FormArtisan
110
+	 * @return FormArtisan
111 111
 	 */
112 112
 	public function input( array $data = [] ) {
113 113
 		$input = $data[0];
@@ -121,7 +121,7 @@  discard block
 block discarded – undo
121 121
 	 *
122 122
 	 * @since 0.10.0
123 123
 	 *
124
-	 * @return WFV\Artisan\FormArtisan
124
+	 * @return FormArtisan
125 125
 	 */
126 126
 	public function messages() {
127 127
 		$this->collection['messages'] = new MessageCollection( $this->config );
@@ -134,7 +134,7 @@  discard block
 block discarded – undo
134 134
 	 *
135 135
 	 * @since 0.10.0
136 136
 	 *
137
-	 * @return WFV\Artisan\FormArtisan
137
+	 * @return FormArtisan
138 138
 	 */
139 139
 	public function rules() {
140 140
 		foreach( $this->config as $field => $options ) {
@@ -150,7 +150,7 @@  discard block
 block discarded – undo
150 150
 	 *
151 151
 	 * @since 0.11.0
152 152
 	 *
153
-	 * @return WFV\Artisan\FormArtisan
153
+	 * @return FormArtisan
154 154
 	 */
155 155
 	public function validator() {
156 156
 		$this->validator = new Validator();
Please login to merge, or discard this patch.
src/Validators/AbstractValidator.php 1 patch
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -110,7 +110,6 @@
 block discarded – undo
110 110
 	 *
111 111
 	 * @since 0.11.0
112 112
 	 *
113
-	 * @param string|array $input
114 113
 	 * @return bool
115 114
 	 */
116 115
 	public function validate( $value ) {
Please login to merge, or discard this patch.