for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Mouf\Security\Rights;
class NotFoundException extends \RuntimeException
{
public static function create(string $name) : NotFoundException
return new self(sprintf('Tried to fetch non-existing right %s from RightsRegistry.', $name));
}