16 lines
244 B
PHP
16 lines
244 B
PHP
|
<?php
|
||
|
|
||
|
namespace frontend\modules\api\models;
|
||
|
|
||
|
class Manager extends \common\models\Manager
|
||
|
{
|
||
|
public function fields(): array
|
||
|
{
|
||
|
return [
|
||
|
'id',
|
||
|
'user_id',
|
||
|
'managerEmployees'
|
||
|
];
|
||
|
}
|
||
|
|
||
|
}
|