@@ -268,7 +268,6 @@ discard block |
||
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 |
||
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 |
@@ -142,7 +142,6 @@ discard block |
||
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 |
||
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 | { |
@@ -109,7 +109,7 @@ discard block |
||
109 | 109 | |
110 | 110 | // check the if the requester has the `create` |
111 | 111 | // permission before creating |
112 | - static::creating(function (ModelEvent $event) { |
|
112 | + static::creating(function(ModelEvent $event) { |
|
113 | 113 | $model = $event->getModel(); |
114 | 114 | |
115 | 115 | if (!$model->can('create', ACLModel::getRequester())) { |
@@ -121,7 +121,7 @@ discard block |
||
121 | 121 | |
122 | 122 | // check the if the requester has the `edit` |
123 | 123 | // permission before updating |
124 | - static::updating(function (ModelEvent $event) { |
|
124 | + static::updating(function(ModelEvent $event) { |
|
125 | 125 | $model = $event->getModel(); |
126 | 126 | |
127 | 127 | if (!$model->can('edit', ACLModel::getRequester())) { |
@@ -133,7 +133,7 @@ discard block |
||
133 | 133 | |
134 | 134 | // check the if the requester has the `delete` |
135 | 135 | // permission before deleting |
136 | - static::deleting(function (ModelEvent $event) { |
|
136 | + static::deleting(function(ModelEvent $event) { |
|
137 | 137 | $model = $event->getModel(); |
138 | 138 | |
139 | 139 | if (!$model->can('delete', ACLModel::getRequester())) { |
@@ -157,7 +157,7 @@ |
||
157 | 157 | |
158 | 158 | // cache the local properties |
159 | 159 | $this->getCacheItem() |
160 | - ->set($this->_values, $this->getCacheTTL()); |
|
160 | + ->set($this->_values, $this->getCacheTTL()); |
|
161 | 161 | |
162 | 162 | return $this; |
163 | 163 | } |
@@ -144,7 +144,7 @@ |
||
144 | 144 | * @param string $error |
145 | 145 | * @param string|false $locale |
146 | 146 | * |
147 | - * @return array |
|
147 | + * @return string |
|
148 | 148 | */ |
149 | 149 | private function parse($property, $error, $locale) |
150 | 150 | { |