Created
June 3, 2015 12:51
-
-
Save robinbowes/74cf2ddb6bd3c2d26dfb to your computer and use it in GitHub Desktop.
Default values in defines
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
define foo( | |
$bar = 'UNDEF' | |
) { | |
include ::some::config | |
$real_bar = $bar ? { | |
'UNDEF' => $::some::config::bar, | |
default => $bar, | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment