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

isPending() public method

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