Neos\Flow\Command\PackageCommandController::deleteCommand PHP Method

deleteCommand() public method

This command deletes an existing package identified by the package key.
public deleteCommand ( string $packageKey ) : string
$packageKey string The package key of the package to create
return string
    public function deleteCommand($packageKey)
    {
        if (!$this->packageManager->isPackageAvailable($packageKey)) {
            $this->outputLine('The package "%s" does not exist.', [$packageKey]);
            $this->quit(1);
        }
        $this->packageManager->deletePackage($packageKey);
        $this->outputLine('Deleted package "%s".', [$packageKey]);
        Scripts::executeCommand('neos.flow:cache:flush', $this->settings, false);
        $this->sendAndExit(0);
    }