mirror of
https://github.com/retailcrm/mailgun-php.git
synced 2025-03-22 07:53:56 +03:00
16 lines
193 B
PHP
16 lines
193 B
PHP
|
<?PHP
|
||
|
|
||
|
class Test{
|
||
|
|
||
|
public function __call($name, $arguments){
|
||
|
return array($name => $arguments);
|
||
|
|
||
|
}
|
||
|
|
||
|
}
|
||
|
|
||
|
$test = new Test();
|
||
|
|
||
|
var_dump($test->olakwnfelkajweklfjlwkjelkmg("Asdfasdf"));
|
||
|
|
||
|
?>
|