Skip to content

Commit 4086506

Browse files
authored
Merge pull request #2384 from gcoxmoz/php_values-doc
Fix example code for apache::vhost::php_values
2 parents e774bc7 + 113ecc0 commit 4086506

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

REFERENCE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9407,7 +9407,7 @@ Allows per-virtual host setting [`php_value`s](http://php.net/manual/en/configur
94079407
These flags or values can be overwritten by a user or an application.
94089408
Within a vhost declaration:
94099409
``` puppet
9410-
php_values => [ 'include_path ".:/usr/local/example-app/include"' ],
9410+
php_values => { 'include_path' => '.:/usr/local/example-app/include' },
94119411
```
94129412

94139413
Default value: `{}`

manifests/vhost.pp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -818,7 +818,7 @@
818818
# These flags or values can be overwritten by a user or an application.
819819
# Within a vhost declaration:
820820
# ``` puppet
821-
# php_values => [ 'include_path ".:/usr/local/example-app/include"' ],
821+
# php_values => { 'include_path' => '.:/usr/local/example-app/include' },
822822
# ```
823823
#
824824
# @param php_flags

0 commit comments

Comments
 (0)