for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* Delivery user info save
*
* @author Alexey Krupskiy <[email protected]>
* @link http://inji.ru/
* @copyright 2016 Alexey Krupskiy
* @license https://github.com/injitools/cms-Inji/blob/master/LICENSE
*/
namespace Ecommerce\Delivery;
class Save extends \Model
{
public static $cols = [
'name' => ['type' => 'text'],
'user_id' => ['type' => 'select', 'source' => 'relation', 'relation' => 'user']
];
public static function relations()
return [
'user' => [
'model' => 'Users\User',
'col' => 'user_id'
]
}