Skip to content

Commit 4757647

Browse files
author
Mikolaj Przybysz
committed
Replaced double quotes with singles
1 parent 9f94220 commit 4757647

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

modules/swagger-codegen/src/main/resources/php/configuration.mustache

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -498,14 +498,14 @@ class Configuration
498498
*/
499499
public static function toDebugReport()
500500
{
501-
$report = "PHP SDK ({{invokerPackage}}) Debug Report:".PHP_EOL;
502-
$report .= " OS: ".php_uname().PHP_EOL;
503-
$report .= " PHP Version: ".phpversion().PHP_EOL;
504-
$report .= " OpenAPI Spec Version: {{version}}".PHP_EOL;
505-
{{#artifactVersion}}
506-
$report .= " SDK Package Version: {{artifactVersion}}".PHP_EOL;
507-
{{/artifactVersion}}
508-
$report .= " Temp Folder Path: ".self::getDefaultConfiguration()->getTempFolderPath().PHP_EOL;
501+
$report = 'PHP SDK ({{invokerPackage}}) Debug Report:' . PHP_EOL;
502+
$report .= ' OS: ' . php_uname() . PHP_EOL;
503+
$report .= ' PHP Version: ' . phpversion() . PHP_EOL;
504+
$report .= ' OpenAPI Spec Version: {{version}}' . PHP_EOL;
505+
{{#artifactVersion}}
506+
$report .= ' SDK Package Version: {{artifactVersion}}' . PHP_EOL;
507+
{{/artifactVersion}}
508+
$report .= ' Temp Folder Path: ' . self::getDefaultConfiguration()->getTempFolderPath() . PHP_EOL;
509509

510510
return $report;
511511
}

0 commit comments

Comments
 (0)