for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace OzanAkman\RepositoryGenerator\Exceptions;
use Exception;
class FileException extends Exception
{
public static function notWritableDirectory($directory)
return new static('Not writable directory, check permissions: '.$directory);
}