Files
emacs/snippets/php-mode/__call
2024-04-30 07:08:23 +02: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
}