League\FactoryMuffin\Stores\AbstractStore::markPending PHP 메소드

markPending() 공개 메소드

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