64], ]; } /** * {@inheritdoc} */ public function attributeLabels() { return [ 'id' => 'ID', 'express_id' => 'Express ID', 'name' => 'Name', 'code' => 'Code', ]; } /** * @param string $code * @return static|null */ public static function getExpressByCode(string $code) { return static::find()->where(['code' => $code])->one(); } }