12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879 |
- <?php
- if (!defined('STATUSNET')) {
-
-
- exit(1);
- }
- class NoticeListItemAdapter
- {
- protected $nli;
-
- function __construct($nli)
- {
- $this->nli = $nli;
- }
-
- function __call($name, $arguments)
- {
- return call_user_func_array(array($this->nli, $name), $arguments);
- }
- function __get($name)
- {
- return $this->nli->$name;
- }
- }
|