Skip to content

Instantly share code, notes, and snippets.

@bodepd
Created June 14, 2011 22:29
Show Gist options
  • Save bodepd/1026094 to your computer and use it in GitHub Desktop.
Save bodepd/1026094 to your computer and use it in GitHub Desktop.
test code for params namespace with inherits
class abc(
$a = $myparams::foo
) inherits myparams {
notify{$a:}
}
class myparams {
$foo = 'blah'
}
class { 'abc': }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment