Completed
Push — 2.x ( bd5129...0e71be )
by Scott Kingsley
10:26 queued 05:36
created
classes/fields/avatar.php 1 patch
Doc Comments   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -48,7 +48,6 @@  discard block
 block discarded – undo
48 48
     /**
49 49
      * Add options and set defaults to
50 50
      *
51
-     * @param array $options
52 51
      *
53 52
      * @since 2.0
54 53
      */
@@ -130,7 +129,7 @@  discard block
 block discarded – undo
130 129
      *
131 130
      * @param array $options
132 131
      *
133
-     * @return array
132
+     * @return boolean
134 133
      * @since 2.0
135 134
      */
136 135
     public function schema ( $options = null ) {
Please login to merge, or discard this patch.
classes/fields/boolean.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -78,7 +78,7 @@  discard block
 block discarded – undo
78 78
      *
79 79
      * @param array $options
80 80
      *
81
-     * @return array
81
+     * @return string
82 82
      * @since 2.0
83 83
      */
84 84
     public function schema ( $options = null ) {
@@ -231,7 +231,7 @@  discard block
 block discarded – undo
231 231
      * @param array $pod
232 232
      * @param object $params
233 233
      *
234
-     * @return int|mixed
234
+     * @return integer
235 235
      * @since 2.0
236 236
      */
237 237
     public function pre_save ( $value, $id = null, $name = null, $options = null, $fields = null, $pod = null, $params = null ) {
Please login to merge, or discard this patch.
classes/fields/code.php 1 patch
Doc Comments   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -101,7 +101,7 @@  discard block
 block discarded – undo
101 101
      *
102 102
      * @param array $options
103 103
      *
104
-     * @return array
104
+     * @return string
105 105
      * @since 2.0
106 106
      */
107 107
     public function schema ( $options = null ) {
@@ -122,7 +122,6 @@  discard block
 block discarded – undo
122 122
      * @param mixed $value
123 123
      * @param string $name
124 124
      * @param array $options
125
-     * @param array $fields
126 125
      * @param array $pod
127 126
      * @param int $id
128 127
      *
Please login to merge, or discard this patch.
classes/fields/color.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -64,7 +64,7 @@
 block discarded – undo
64 64
      *
65 65
      * @param array $options
66 66
      *
67
-     * @return array
67
+     * @return string
68 68
      * @since 2.0
69 69
      */
70 70
     public function schema ( $options = null ) {
Please login to merge, or discard this patch.
classes/fields/date.php 1 patch
Doc Comments   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -116,7 +116,7 @@  discard block
 block discarded – undo
116 116
      *
117 117
      * @param array $options
118 118
      *
119
-     * @return array
119
+     * @return string
120 120
      * @since 2.0
121 121
      */
122 122
     public function schema ( $options = null ) {
@@ -283,8 +283,8 @@  discard block
 block discarded – undo
283 283
     }
284 284
 
285 285
     /**
286
-     * @param $format
287
-     * @param $date
286
+     * @param string $format
287
+     * @param string $date
288 288
      *
289 289
      * @return DateTime
290 290
      */
@@ -314,7 +314,7 @@  discard block
 block discarded – undo
314 314
      * Convert a date from one format to another
315 315
      *
316 316
      * @param $value
317
-     * @param $new_format
317
+     * @param string $new_format
318 318
      * @param string $original_format
319 319
      *
320 320
      * @return string
Please login to merge, or discard this patch.
classes/fields/email.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -93,7 +93,7 @@  discard block
 block discarded – undo
93 93
      *
94 94
      * @param array $options
95 95
      *
96
-     * @return array
96
+     * @return string
97 97
      * @since 2.0
98 98
      */
99 99
     public function schema ( $options = null ) {
@@ -238,7 +238,7 @@  discard block
 block discarded – undo
238 238
      * @param array $fields
239 239
      * @param array $pod
240 240
      *
241
-     * @return mixed|string
241
+     * @return string
242 242
      * @since 2.0
243 243
      */
244 244
     public function ui ( $id, $value, $name = null, $options = null, $fields = null, $pod = null ) {
Please login to merge, or discard this patch.
classes/fields/file.php 1 patch
Doc Comments   +2 added lines, -3 removed lines patch added patch discarded remove patch
@@ -59,7 +59,6 @@  discard block
 block discarded – undo
59 59
     /**
60 60
      * Add options and set defaults to
61 61
      *
62
-     * @param array $options
63 62
      *
64 63
      * @since 2.0
65 64
      */
@@ -205,7 +204,7 @@  discard block
 block discarded – undo
205 204
      *
206 205
      * @param array $options
207 206
      *
208
-     * @return array
207
+     * @return boolean
209 208
      * @since 2.0
210 209
      */
211 210
     public function schema ( $options = null ) {
@@ -414,7 +413,7 @@  discard block
 block discarded – undo
414 413
      * @param array $fields
415 414
      * @param array $pod
416 415
      *
417
-     * @return mixed|void
416
+     * @return null|string
418 417
      * @since 2.0
419 418
      */
420 419
     public function ui ( $id, $value, $name = null, $options = null, $fields = null, $pod = null ) {
Please login to merge, or discard this patch.
classes/fields/html.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -121,7 +121,7 @@
 block discarded – undo
121 121
      *
122 122
      * @param array $options
123 123
      *
124
-     * @return array
124
+     * @return boolean
125 125
      * @since 2.0
126 126
      */
127 127
     public function schema ( $options = null ) {
Please login to merge, or discard this patch.
classes/fields/paragraph.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -161,7 +161,7 @@  discard block
 block discarded – undo
161 161
      *
162 162
      * @param array $options
163 163
      *
164
-     * @return array
164
+     * @return string
165 165
      * @since 2.0
166 166
      */
167 167
     public function schema ( $options = null ) {
@@ -261,7 +261,7 @@  discard block
 block discarded – undo
261 261
      * @param array $pod
262 262
      * @param object $params
263 263
      *
264
-     * @return mixed|string
264
+     * @return string
265 265
      * @since 2.0
266 266
      */
267 267
     public function pre_save ( $value, $id = null, $name = null, $options = null, $fields = null, $pod = null, $params = null ) {
Please login to merge, or discard this patch.