src/JsonApi/Factory.php line 9

Open in your IDE?
  1. <?php
  2. declare(strict_types=1);
  3. namespace App\JsonApi;
  4. use Neomerx\JsonApi\Contracts\Schema\ContainerInterface;
  5. final class Factory extends \Neomerx\JsonApi\Factories\Factory
  6. {
  7.     public function createContainer(array $providers = []): ContainerInterface
  8.     {
  9.         return new Container($this$providers);
  10.     }
  11. }