League\FactoryMuffin\Stores\AbstractStore::isSaved PHP Méthode

isSaved() public méthode

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