Packages.php 321 B

1234567891011121314151617
  1. <?php
  2. namespace Grav\Common\GPM\Local;
  3. use Grav\Common\GPM\Common\CachedCollection;
  4. class Packages extends CachedCollection
  5. {
  6. public function __construct()
  7. {
  8. $items = [
  9. 'plugins' => new Plugins(),
  10. 'themes' => new Themes()
  11. ];
  12. parent::__construct($items);
  13. }
  14. }