for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php declare(strict_types=1);
namespace Shopware\WebInstaller;
use Shopware\Core\Framework\Log\Package;
/**
* @internal
*/
#[Package('core')]
class InstallerException extends \RuntimeException
{
public static function cannotFindShopwareInstallation(): self
return new self('Could not find Shopware installation');
}
public static function cannotFindComposerLock(): self
return new self('Could not find composer.lock file');
public static function cannotFindShopwareInComposerLock(): self
return new self('Could not find Shopware in composer.lock file');