for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Squadron\Base\Exceptions;
class SquadronException extends \Exception
{
public static function packageIsNotInstalled(string $packageName)
return new static("Package {$packageName} must be installed for this feature");
}