vendor/api-platform/core/src/Serializer/ResourceList.php line 19

Open in your IDE?
  1. <?php
  2. /*
  3.  * This file is part of the API Platform project.
  4.  *
  5.  * (c) Kévin Dunglas <dunglas@gmail.com>
  6.  *
  7.  * For the full copyright and license information, please view the LICENSE
  8.  * file that was distributed with this source code.
  9.  */
  10. declare(strict_types=1);
  11. namespace ApiPlatform\Serializer;
  12. /**
  13.  * @internal
  14.  */
  15. class ResourceList extends \ArrayObject
  16. {
  17. }
  18. class_alias(ResourceList::class, \ApiPlatform\Core\Serializer\ResourceList::class);