for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Mostafaznv\LaraCache\Exceptions;
use InvalidArgumentException;
class EntityIsNotAllowed extends InvalidArgumentException
{
public static function make(): static
return new static('Entity is not allowed.');
}