Puppet Class: php::phpunit

Inherits:
php::phpunit::params
Defined in:
manifests/phpunit.pp

Overview

Parameters:

  • ensure (Any) (defaults to: $php::phpunit::params::ensure)
  • package (Any) (defaults to: $php::phpunit::params::package)
  • provider (Any) (defaults to: $php::phpunit::params::provider)


27
28
29
30
31
32
33
34
35
36
37
38
39
40
# File 'manifests/phpunit.pp', line 27

class php::phpunit (
  $ensure   = $php::phpunit::params::ensure,
  $package  = $php::phpunit::params::package,
  $provider = $php::phpunit::params::provider
) inherits php::phpunit::params {

  package { $package:
    ensure    => $ensure,
    provider  => $provider;
  }

  Exec['php::pear::auto_discover'] -> Package[$package]

}