FOF30\Model\DataModel::create PHP Method

create() public method

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