FOF30\Model\DataModel::create PHP 메소드

create() 공개 메소드

Create a new record with the provided data
public create ( array $data ) : static
$data array The data to use in the new record
리턴 static Self, for chaining
    public function create($data)
    {
        return $this->reset()->bind($data)->save();
    }