Bolt\Storage\Collection\Taxonomy::getNew PHP Method

getNew() public method

* Gets the elements that have not yet been persisted
public getNew ( )
    public function getNew()
    {
        return $this->filter(function ($el) {
            return !$el->getId();
        });
    }