for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace pastuhov\ymlcatalog\models;
/**
* Class LocalDeliveryCost
*
* @package pastuhov\ymlcatalog\models
* @deprecated
*/
class LocalDeliveryCost extends BaseModel
{
* @inheritdoc
public static $tag = 'local_delivery_cost';
public $value;
public function rules()
return [
[
['value'],
'integer',
],
];
}
protected function getYmlBody()
return $this->value;