Merge pull request #4124 from tohojo/adv-search-fix
[civicrm-core.git] / CRM / Utils / FakeObject.php
1 <?php
2
3 /**
4 * This is a quick-and-dirty way to define a vaguely-class-ish structure. It's non-performant, abnormal,
5 * and not a complete OOP system. Only use for testing/mocking.
6 *
7 * @code
8 * $object = new CRM_Utils_FakeObject(array(
9 * 'doIt' => function() { print "It!\n"; }
10 * ));
11 * $object->doIt();
12 * @endcode
13 */
14 class CRM_Utils_FakeObject {
15 /**
16 * @param $array
17 */
18 function __construct($array) {
19 $this->array = $array;
20 }
21
22 /**
23 * @param $name
24 * @param $arguments
25 *
26 * @throws Exception
27 */
28 function __call($name, $arguments) {
29 if (isset($this->array[$name]) && is_callable($this->array[$name])) {
30 return call_user_func_array($this->array[$name], $arguments);
31 } else {
32 throw new Exception("Call to unimplemented method: $name");
33 }
34 }
35 }