for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Thinktomorrow\AssetLibrary\Exceptions;
use Exception;
class ConfigException extends Exception
{
public static function croppingDisabled()
return new static("The cropping config setting needs to be turned on to crop images. See 'config\assetlibrary.php' for the 'allowCropping' field.");
}