# -*- mode: snippet -*-
|
|
# contributor: USAMI Kenta <tadsan@zonu.me>
|
|
# name: __call()
|
|
# key: __call
|
|
# group: Magic Methods
|
|
# --
|
|
public function __call($name, $args)
|
|
{
|
|
$0
|
|
}
|