MongolidLaravel\MongolidModel::save PHP 메소드

save() 공개 메소드

Save the model to the database if it's valid. This method also checks for the presence of the localMock in order to call the save method into the existing Mock in order not to touch the database.
public save ( boolean $force = false ) : boolean
$force boolean Force save even if the object is invalid.
리턴 boolean
    public function save(bool $force = false)
    {
        if ($this->localMockHasExpectationsFor('save')) {
            return $this->getLocalMock()->save();
        }
        if ($force || $this->isValid()) {
            $this->hashAttributes();
            return parent::save();
        }
        return false;
    }