ZF\Apigility\Admin\Controller\PackageController::createZpkXmlOption PHP Метод

createZpkXmlOption() приватный Метод

Create and return the deploymentxml option.
private createZpkXmlOption ( null | string $xml ) : string
$xml null | string
Результат string
    private function createZpkXmlOption($xml)
    {
        if (null === $xml || !is_string($xml)) {
            return '';
        }
        return ' --deploymentxml=' . escapeshellarg($xml);
    }