for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace pastuhov\ymlcatalog\models;
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;