Skip to content

Commit 16a4d4b

Browse files
author
Ciaran McCrisken
committed
(MODULES-10899) Fix double quoted string issues
1 parent 7ccfc21 commit 16a4d4b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

manifests/mod/php.pp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
if (versioncmp($php_version, '7') <= 0) {
2020
$mod = "php${php_version}"
2121
} else {
22-
$mod = "php"
22+
$mod = 'php'
2323
}
2424

2525
if $apache::version::scl_httpd_version == undef and $apache::version::scl_php_version != undef {
@@ -91,7 +91,7 @@
9191
package => $_package_name,
9292
package_ensure => $package_ensure,
9393
lib => "${libphp_prefix}.so",
94-
id => "php_module",
94+
id => 'php_module',
9595
path => $path,
9696
}
9797
}

0 commit comments

Comments
 (0)