for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Cadre\Module;
use RuntimeException;
class ConflictingModuleException extends RuntimeException
{
public function __construct($module, $with)
parent::__construct(sprintf('%s conflicts with %s', $module, $with));
}