get('dbXcrm'); } /** * @inheritdoc */ public function rules() { return [ [['ib_id', 'ib_login', 'user_login', 'trade_ticket', 'trade_type', 'trade_volume', 'commission_rule', 'commission', 'in_time'], 'required'], [['ib_id', 'ib_login', 'user_login', 'trade_ticket', 'trade_type', 'in_time'], 'integer'], [['trade_volume', 'commission'], 'number'], [['commission_rule'], 'string', 'max' => 255], ]; } /** * @inheritdoc */ public function attributeLabels() { return [ 'id' => 'ID', 'ib_id' => 'Ib ID', 'ib_login' => 'Ib Login', 'user_login' => 'User Login', 'trade_ticket' => 'Trade Ticket', 'trade_type' => 'Trade Type', 'trade_volume' => 'Trade Volume', 'commission_rule' => 'Commission Rule', 'commission' => 'Commission', 'in_time' => 'In Time', ]; } }