mirror of
https://github.com/retailcrm/mailgun-php.git
synced 2025-02-06 08:19:25 +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"));
|
|
|
|
?>
|