for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Softonic\GraphQL\Exceptions;
class InaccessibleArgumentException extends \RuntimeException
{
public static function fromEmptyArguments(string $key): InaccessibleArgumentException
return new self("You cannot access a non existing collection '$key'");
}