initial commit
[namibia] / module / Workspace / src / Workspace / Utility / Param.php
1 <?php
2 namespace Workspace\Utility;
3
4
5
6 /**
7  * Parameter utility to keep options.
8  * @author andre.fourie
9  */
10 class Param
11 {
12
13         /**
14          * If value is not set, return false by default.
15          * @param string $name
16          * @return boolean
17          */
18         public function __get($name)
19         {
20                 return false;
21         }
22
23 }