Destiny\Grimoire\PageCollection::__construct PHP Method

__construct() public method

public __construct ( Theme $theme, array $items )
$theme Theme
$items array
    public function __construct(Theme $theme, array $items)
    {
        foreach ($items as $properties) {
            $page = new Page($theme, $properties);
            $this->items[$page->pageId] = $page;
        }
    }
PageCollection