Files
dotfiles/.emacs.d/snippets/php-mode/__call
2017-12-21 17:29:29 +01:00

10 lines
174 B
Plaintext

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