for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Thinktomorrow\AssetLibrary\Exceptions;
use Exception;
class CorruptMediaException extends Exception
{
public static function corrupt($id)
return new static("There seems to be something wrong with asset id ". $id .". There is no media attached at this time.");
Overly long lines are hard to read on any screen. Most code styles therefor impose a maximum limit on the number of characters in a line.
}
Overly long lines are hard to read on any screen. Most code styles therefor impose a maximum limit on the number of characters in a line.