Destiny\Grimoire\ThemeCollection::__construct PHP Method

__construct() public method

public __construct ( Grimoire $grimoire, array $items )
$grimoire Destiny\Grimoire
$items array
    public function __construct(Grimoire $grimoire, array $items)
    {
        foreach ($items as $properties) {
            $theme = new Theme($grimoire, $properties);
            $this->items[$theme->themeId] = $theme;
        }
    }
ThemeCollection