GenericCollection.php 465 B

123456789101112131415161718192021222324
  1. <?php
  2. declare(strict_types=1);
  3. /**
  4. * @package Grav\Common\Flex
  5. *
  6. * @copyright Copyright (c) 2015 - 2022 Trilby Media, LLC. All rights reserved.
  7. * @license MIT License; see LICENSE file for details.
  8. */
  9. namespace Grav\Common\Flex\Types\Generic;
  10. use Grav\Common\Flex\FlexCollection;
  11. /**
  12. * Class GenericCollection
  13. * @package Grav\Common\Flex\Generic
  14. *
  15. * @extends FlexCollection<GenericObject>
  16. */
  17. class GenericCollection extends FlexCollection
  18. {
  19. }