Flake\Core\Collection::newCollectionLikeThisOne PHP Method

newCollectionLikeThisOne() protected method

# This abstraction is useful because of CollectionTyped
protected newCollectionLikeThisOne ( )
    protected function newCollectionLikeThisOne()
    {
        $oCollection = new \Flake\Core\Collection();
        # two lines instead of one
        return $oCollection;
        # as PHP needs a variable to return by ref
    }