FOF30\Model\DataModel::store PHP Method

store() public method

Alias of save. For JTableInterface compatibility.
public store ( boolean $updateNulls = false ) : boolean
$updateNulls boolean Blatantly ignored.
return boolean True on success.
    public function store($updateNulls = false)
    {
        try {
            $this->save();
        } catch (\Exception $e) {
            return false;
        }
        return true;
    }