for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Mostafaznv\LaraCache\Exceptions;
use InvalidArgumentException;
class ModelDoesntUseLaraCacheTrait extends InvalidArgumentException
{
public static function make(string $model): static
return new static("Target model [$model] does not use LaraCache Trait.");
}