for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace HansOtt\GraphQL\Schema;
final class ParserFactory
{
public function create()
$lexer = new Lexer;
return new Parser($lexer);
}