for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace Psi\Component\ObjectAgent\Exception;
class BadMethodCallException extends \BadMethodCallException
{
public static function classArgumentIsMandatory(string $implementation)
throw new self(sprintf(
'The class argument is mandatory for the %s agent', $implementation
));
}
public static function setParentNotSupported(string $implementation)
'setParent is not supported by the %s agent',
$implementation
public static function queryCountNotSupported(string $implementation)
'queryCount is not supported by the %s agent',
public static function comparisonNotSupported(string $comparison)
'Comparison "%s" is not supported.',
$comparison