Skip to content

Commit a7716a8

Browse files
committed
Fix order of comments
1 parent 13a0741 commit a7716a8

File tree

2 files changed

+23
-22
lines changed

2 files changed

+23
-22
lines changed

manifests/license.pp

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,15 @@
11
# @summary Upload a Zend product license to the proper directory
22
#
3-
# @param source
4-
# Source path or puppet URL to license file
5-
#
63
# @example
74
# class { 'zend_common::license':
85
# source => 'puppet:///modules/<MODULE_NAME>/zend/license',
96
# notify => Class['zendhq::service'],
107
# subscribe => Class['zendhq::package'],
118
# }
9+
#
10+
# @param source
11+
# Source path or puppet URL to license file
12+
#
1213
class zend_common::license (
1314
String[1] $source,
1415
) {

manifests/repo.pp

Lines changed: 19 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,24 @@
11
# @summary Configure the ZendPHP package repositories depending on OS and version
22
#
3+
# @example Without parameters
4+
# include zend_common::repo
5+
#
6+
# @example With product other than ZendPHP
7+
# class { 'zend_common::repo':
8+
# product => 'ZendHQ',
9+
# support_urls => {
10+
# supported_platforms => 'https://help.zend.com/zendphp/current/content/installation/zendhq_supported_platforms.htm',
11+
# },
12+
# }
13+
#
14+
# @example With credentials
15+
# class { 'zend_common::repo':
16+
# creds => {
17+
# username => '<ZEND_USERNAME>',
18+
# password => '<ZEND_PASSWORD>',
19+
# }
20+
# }
21+
#
322
# @param [Enum['ZendPHP', 'ZendHQ']] product
423
# Name of the Zend product
524
#
@@ -27,25 +46,6 @@
2746
# @option support_urls [String] supported_platforms
2847
# Link to the supported platforms for the relevant Zend product
2948
#
30-
# @example Without parameters
31-
# include zend_common::repo
32-
#
33-
# @example With product other than ZendPHP
34-
# class { 'zend_common::repo':
35-
# product => 'ZendHQ',
36-
# support_urls => {
37-
# supported_platforms => 'https://help.zend.com/zendphp/current/content/installation/zendhq_supported_platforms.htm',
38-
# },
39-
# }
40-
#
41-
# @example With credentials
42-
# class { 'zend_common::repo':
43-
# creds => {
44-
# username => '<ZEND_USERNAME>',
45-
# password => '<ZEND_PASSWORD>',
46-
# }
47-
# }
48-
#
4949
class zend_common::repo (
5050
Enum['ZendPHP', 'ZendHQ'] $product = 'ZendPHP',
5151
Optional[Hash] $creds = undef,

0 commit comments

Comments
 (0)