Completed
Push — master ( e0f9e9...43f62d )
by Jared
175:39 queued 119:08
created
src/Driver/DatabaseDriver.php 1 patch
Doc Comments   -2 removed lines patch added patch discarded remove patch
@@ -268,7 +268,6 @@  discard block
 block discarded – undo
268 268
     /**
269 269
      * Returns a prefixed where statement.
270 270
      *
271
-     * @param string $columns
272 271
      * @param string $tablename
273 272
      *
274 273
      * @return string
@@ -296,7 +295,6 @@  discard block
 block discarded – undo
296 295
     /**
297 296
      * Returns a prefixed sort statement.
298 297
      *
299
-     * @param string $columns
300 298
      * @param string $tablename
301 299
      *
302 300
      * @return string
Please login to merge, or discard this patch.
src/Model.php 1 patch
Doc Comments   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -265,7 +265,7 @@  discard block
 block discarded – undo
265 265
     /**
266 266
      * Sets the driver for all models.
267 267
      *
268
-     * @param Model\Driver\DriverInterface $driver
268
+     * @param DriverInterface $driver
269 269
      */
270 270
     public static function setDriver(DriverInterface $driver)
271 271
     {
@@ -275,7 +275,7 @@  discard block
 block discarded – undo
275 275
     /**
276 276
      * Gets the driver for all models.
277 277
      *
278
-     * @return Model\Driver\DriverInterface
278
+     * @return DriverInterface
279 279
      */
280 280
     public static function getDriver()
281 281
     {
@@ -983,7 +983,7 @@  discard block
 block discarded – undo
983 983
     /**
984 984
      * Generates a new query instance.
985 985
      *
986
-     * @return Model\Query
986
+     * @return Query
987 987
      */
988 988
     public static function query()
989 989
     {
@@ -1111,7 +1111,7 @@  discard block
 block discarded – undo
1111 1111
      * @param string $foreignKey identifying key on foreign model
1112 1112
      * @param string $localKey   identifying key on local model
1113 1113
      *
1114
-     * @return Relation
1114
+     * @return HasOne
1115 1115
      */
1116 1116
     public function hasOne($model, $foreignKey = '', $localKey = '')
1117 1117
     {
@@ -1136,7 +1136,7 @@  discard block
 block discarded – undo
1136 1136
      * @param string $foreignKey identifying key on foreign model
1137 1137
      * @param string $localKey   identifying key on local model
1138 1138
      *
1139
-     * @return Relation
1139
+     * @return BelongsTo
1140 1140
      */
1141 1141
     public function belongsTo($model, $foreignKey = '', $localKey = '')
1142 1142
     {
@@ -1161,7 +1161,7 @@  discard block
 block discarded – undo
1161 1161
      * @param string $foreignKey identifying key on foreign model
1162 1162
      * @param string $localKey   identifying key on local model
1163 1163
      *
1164
-     * @return Relation
1164
+     * @return HasMany
1165 1165
      */
1166 1166
     public function hasMany($model, $foreignKey = '', $localKey = '')
1167 1167
     {
@@ -1186,7 +1186,7 @@  discard block
 block discarded – undo
1186 1186
      * @param string $foreignKey identifying key on foreign model
1187 1187
      * @param string $localKey   identifying key on local model
1188 1188
      *
1189
-     * @return Relation
1189
+     * @return BelongsToMany
1190 1190
      */
1191 1191
     public function belongsToMany($model, $foreignKey = '', $localKey = '')
1192 1192
     {
@@ -1306,7 +1306,7 @@  discard block
 block discarded – undo
1306 1306
      *
1307 1307
      * @param string $eventName
1308 1308
      *
1309
-     * @return Model\ModelEvent
1309
+     * @return \Symfony\Component\EventDispatcher\Event
1310 1310
      */
1311 1311
     protected function dispatch($eventName)
1312 1312
     {
Please login to merge, or discard this patch.
src/Validate.php 1 patch
Doc Comments   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -142,7 +142,6 @@  discard block
 block discarded – undo
142 142
     /**
143 143
      * Validates an e-mail address.
144 144
      *
145
-     * @param string $email      e-mail address
146 145
      * @param array  $parameters parameters for validation
147 146
      *
148 147
      * @return bool success
@@ -174,7 +173,7 @@  discard block
 block discarded – undo
174 173
      *
175 174
      * @param mixed $value
176 175
      *
177
-     * @return bool
176
+     * @return integer
178 177
      */
179 178
     private static function date(&$value)
180 179
     {
Please login to merge, or discard this patch.