League\FactoryMuffin\Stores\AbstractStore::isSaved PHP Method

isSaved() public method

Is the model saved?
public isSaved ( object $model ) : boolean
$model object The model instance.
return boolean
    public function isSaved($model)
    {
        return in_array($model, $this->saved, true);
    }