@@ -487,7 +487,7 @@ |
||
487 | 487 | |
488 | 488 | $in = $foreignKey.' IN ('.implode(',', $uniqueIds).')'; |
489 | 489 | $models = $modelClass::where($in) |
490 | - ->first(self::MAX_LIMIT); |
|
490 | + ->first(self::MAX_LIMIT); |
|
491 | 491 | |
492 | 492 | $result = []; |
493 | 493 | foreach ($models as $model) { |
@@ -129,7 +129,7 @@ |
||
129 | 129 | /** |
130 | 130 | * Sets the sort pattern for the query. |
131 | 131 | * |
132 | - * @param array|string $sort |
|
132 | + * @param string $sort |
|
133 | 133 | * |
134 | 134 | * @return $this |
135 | 135 | */ |
@@ -112,7 +112,7 @@ discard block |
||
112 | 112 | |
113 | 113 | // check the if the requester has the `create` |
114 | 114 | // permission before creating |
115 | - static::creating(function (ModelEvent $event) { |
|
115 | + static::creating(function(ModelEvent $event) { |
|
116 | 116 | $model = $event->getModel(); |
117 | 117 | |
118 | 118 | if (!$model->can('create', ACLModelRequester::get())) { |
@@ -124,7 +124,7 @@ discard block |
||
124 | 124 | |
125 | 125 | // check the if the requester has the `edit` |
126 | 126 | // permission before updating |
127 | - static::updating(function (ModelEvent $event) { |
|
127 | + static::updating(function(ModelEvent $event) { |
|
128 | 128 | $model = $event->getModel(); |
129 | 129 | |
130 | 130 | if (!$model->can('edit', ACLModelRequester::get())) { |
@@ -136,7 +136,7 @@ discard block |
||
136 | 136 | |
137 | 137 | // check the if the requester has the `delete` |
138 | 138 | // permission before deleting |
139 | - static::deleting(function (ModelEvent $event) { |
|
139 | + static::deleting(function(ModelEvent $event) { |
|
140 | 140 | $model = $event->getModel(); |
141 | 141 | |
142 | 142 | if (!$model->can('delete', ACLModelRequester::get())) { |
@@ -272,7 +272,6 @@ discard block |
||
272 | 272 | /** |
273 | 273 | * Returns a prefixed where statement. |
274 | 274 | * |
275 | - * @param string $columns |
|
276 | 275 | * @param string $tablename |
277 | 276 | * |
278 | 277 | * @return array |
@@ -300,7 +299,6 @@ discard block |
||
300 | 299 | /** |
301 | 300 | * Returns a prefixed sort statement. |
302 | 301 | * |
303 | - * @param string $columns |
|
304 | 302 | * @param string $tablename |
305 | 303 | * |
306 | 304 | * @return array |
@@ -12,7 +12,6 @@ |
||
12 | 12 | namespace Pulsar\Driver; |
13 | 13 | |
14 | 14 | use JAQB\ConnectionManager; |
15 | -use JAQB\Exception\JAQBException; |
|
16 | 15 | use JAQB\QueryBuilder; |
17 | 16 | use PDOException; |
18 | 17 | use PDOStatement; |
@@ -191,7 +191,6 @@ |
||
191 | 191 | /** |
192 | 192 | * Validates an e-mail address. |
193 | 193 | * |
194 | - * @param string $email e-mail address |
|
195 | 194 | * @param array $parameters parameters for validation |
196 | 195 | * |
197 | 196 | * @return bool success |
@@ -118,7 +118,7 @@ |
||
118 | 118 | * |
119 | 119 | * @param mixed $value |
120 | 120 | * |
121 | - * @return object |
|
121 | + * @return \stdClass |
|
122 | 122 | */ |
123 | 123 | public static function to_object($value): \stdClass |
124 | 124 | { |
@@ -228,13 +228,13 @@ |
||
228 | 228 | { |
229 | 229 | static::$properties = array_replace(self::AUTO_TIMESTAMPS, static::$properties); |
230 | 230 | |
231 | - self::creating(function (ModelEvent $event) { |
|
231 | + self::creating(function(ModelEvent $event) { |
|
232 | 232 | $model = $event->getModel(); |
233 | 233 | $model->created_at = time(); |
234 | 234 | $model->updated_at = time(); |
235 | 235 | }); |
236 | 236 | |
237 | - self::updating(function (ModelEvent $event) { |
|
237 | + self::updating(function(ModelEvent $event) { |
|
238 | 238 | $event->getModel()->updated_at = time(); |
239 | 239 | }); |
240 | 240 | } |