yasnippet-snippets/snippets/php-mode/catch

10 lines
190 B
Plaintext

# -*- mode: snippet -*-
# contributor: USAMI Kenta <tadsan@zonu.me>
# name: catch
# key: catch
# group : control structure
# --
catch (${1:\PDOException} ${2:$e}) {
${3:
throw $e;}
}