@@ -115,7 +115,7 @@ discard block |
||
| 115 | 115 | } |
| 116 | 116 | |
| 117 | 117 | /** |
| 118 | - * @param $action |
|
| 118 | + * @param string $action |
|
| 119 | 119 | * @throws \yii\db\Exception |
| 120 | 120 | */ |
| 121 | 121 | public function audit($action) |
@@ -261,14 +261,14 @@ discard block |
||
| 261 | 261 | /** |
| 262 | 262 | * Save the audit trails for a create or update action |
| 263 | 263 | * |
| 264 | - * @param $action |
|
| 264 | + * @param string $action |
|
| 265 | 265 | * @param $newAttributes |
| 266 | 266 | * @param $oldAttributes |
| 267 | 267 | * @param $entry_id |
| 268 | 268 | * @param $user_id |
| 269 | - * @param $model |
|
| 269 | + * @param string $model |
|
| 270 | 270 | * @param $model_id |
| 271 | - * @param $created |
|
| 271 | + * @param string $created |
|
| 272 | 272 | * @throws \yii\db\Exception |
| 273 | 273 | */ |
| 274 | 274 | protected function saveAuditTrail($action, $newAttributes, $oldAttributes, $entry_id, $user_id, $model, $model_id, $created) |
@@ -177,9 +177,10 @@ |
||
| 177 | 177 | */ |
| 178 | 178 | protected function cleanAttributesIgnored($attributes) |
| 179 | 179 | { |
| 180 | - if($this->ignore_timestamps) |
|
| 181 | - $this->ignored = array_merge($this->ignored, [ |
|
| 180 | + if($this->ignore_timestamps) { |
|
| 181 | + $this->ignored = array_merge($this->ignored, [ |
|
| 182 | 182 | 'created', 'updated', 'created_at', 'updated_at', 'timestamp']); |
| 183 | + } |
|
| 183 | 184 | |
| 184 | 185 | if (sizeof($this->ignored) > 0) { |
| 185 | 186 | foreach ($attributes as $f => $v) { |