diff options
author | Andrey Andreev <narf@bofh.bg> | 2012-04-06 20:47:49 +0200 |
---|---|---|
committer | Andrey Andreev <narf@bofh.bg> | 2012-04-06 20:47:49 +0200 |
commit | 9c9591c9b4a1d7ac412f7a85aeb5c92f50aa3490 (patch) | |
tree | 7c124a83b2ca8e064caaef00f83b514200311339 /tests/mocks/libraries/table.php | |
parent | d1587defeb0304755d9a937aa688ee82098de246 (diff) |
Fix erroneous merge
Diffstat (limited to 'tests/mocks/libraries/table.php')
-rw-r--r-- | tests/mocks/libraries/table.php | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/tests/mocks/libraries/table.php b/tests/mocks/libraries/table.php new file mode 100644 index 000000000..1a6ff8d35 --- /dev/null +++ b/tests/mocks/libraries/table.php @@ -0,0 +1,15 @@ +<?php + +class Mock_Libraries_Table extends CI_Table { + + // Overide inaccesible private or protected method + public function __call($method, $params) + { + if (is_callable(array($this, '_'.$method))) + { + return call_user_func_array(array($this, '_'.$method), $params); + } + + throw new BadMethodCallException('Method '.$method.' was not found'); + } +}
\ No newline at end of file |