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

markPending() public method

Mark a model as waiting to be saved.
public markPending ( object $model ) : void
$model object The model instance.
return void
    public function markPending($model)
    {
        $hash = spl_object_hash($model);
        $this->pending[$hash] = $model;
    }