for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Bankiru\Api\Doctrine\Exception;
class TypeException extends \LogicException implements DoctrineApiException
{
public static function cannotRedeclare($type)
return new self(sprintf('Cannot redeclare type "%s"', $type));
}
public static function unknown($type)
return new self(sprintf('Unknown type "%s"', $type));