Replaced double quotes with singles

This commit is contained in:
Mikolaj Przybysz
2016-06-01 10:57:20 +02:00
parent 9f94220010
commit 47576471e2

View File

@@ -498,14 +498,14 @@ class Configuration
*/
public static function toDebugReport()
{
$report = "PHP SDK ({{invokerPackage}}) Debug Report:".PHP_EOL;
$report .= " OS: ".php_uname().PHP_EOL;
$report .= " PHP Version: ".phpversion().PHP_EOL;
$report .= " OpenAPI Spec Version: {{version}}".PHP_EOL;
{{#artifactVersion}}
$report .= " SDK Package Version: {{artifactVersion}}".PHP_EOL;
{{/artifactVersion}}
$report .= " Temp Folder Path: ".self::getDefaultConfiguration()->getTempFolderPath().PHP_EOL;
$report = 'PHP SDK ({{invokerPackage}}) Debug Report:' . PHP_EOL;
$report .= ' OS: ' . php_uname() . PHP_EOL;
$report .= ' PHP Version: ' . phpversion() . PHP_EOL;
$report .= ' OpenAPI Spec Version: {{version}}' . PHP_EOL;
{{#artifactVersion}}
$report .= ' SDK Package Version: {{artifactVersion}}' . PHP_EOL;
{{/artifactVersion}}
$report .= ' Temp Folder Path: ' . self::getDefaultConfiguration()->getTempFolderPath() . PHP_EOL;
return $report;
}