1 | <?php |
||
15 | abstract class ModelWithHandle extends Model |
||
16 | { |
||
17 | |||
18 | use traits\ModelWithHandle; |
||
19 | |||
20 | /** |
||
21 | * @return bool |
||
22 | */ |
||
23 | public function isNew(): bool |
||
27 | |||
28 | /** |
||
29 | * @inheritdoc |
||
30 | */ |
||
31 | public function rules() |
||
40 | |||
41 | /** |
||
42 | * @inheritdoc |
||
43 | */ |
||
44 | public function attributeLabels() |
||
53 | |||
54 | } |
||
55 |