for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace TomPHP\ConfigServiceProvider\Exception;
use LogicException;
final class UnsupportedFeatureException extends LogicException
{
/**
* @param string $containerName
*
* @return self
*/
public static function forInflectors($containerName)
return new self(sprintf('%s does not support inflectors.', $containerName));
}