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

10 lines
192 B
Plaintext

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