RedBeanPHP\Repository::processSharedResidue PHP Method

processSharedResidue() protected method

Stores all the beans in the residue group.
protected processSharedResidue ( redbeanphp\OODBBean $bean, array $sharedresidue ) : void
$bean redbeanphp\OODBBean bean to process
$sharedresidue array list to process
return void
    protected function processSharedResidue($bean, $sharedresidue)
    {
        foreach ($sharedresidue as $residue) {
            $this->store($residue);
        }
    }