commit
b410c9e3c4
@ -92,6 +92,14 @@ if (${1}) {
|
|||||||
}
|
}
|
||||||
endsnippet
|
endsnippet
|
||||||
|
|
||||||
|
snippet ife "php ife" !b
|
||||||
|
if (${1}) {
|
||||||
|
${2}
|
||||||
|
} else {
|
||||||
|
|
||||||
|
}
|
||||||
|
endsnippet
|
||||||
|
|
||||||
snippet /** "php comment block" b
|
snippet /** "php comment block" b
|
||||||
/**
|
/**
|
||||||
* @${1}
|
* @${1}
|
||||||
|
30
UltiSnips/php/phpunit.snippets
Normal file
30
UltiSnips/php/phpunit.snippets
Normal file
@ -0,0 +1,30 @@
|
|||||||
|
# sugguestion? report bugs?
|
||||||
|
# please go to https://github.com/chrisyue/vim-snippets/issues
|
||||||
|
snippet test "phpunit test class" b
|
||||||
|
namespace `!p
|
||||||
|
abspath = os.path.abspath(path)
|
||||||
|
m = re.search(r'[A-Z].+(?=/)', abspath)
|
||||||
|
if m:
|
||||||
|
snip.rv = m.group().replace('/', '\\')
|
||||||
|
`;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @author `whoami`
|
||||||
|
*/
|
||||||
|
class `!p
|
||||||
|
snip.rv = re.match(r'.*(?=\.)', fn).group()
|
||||||
|
` extends \PHPUnit_Framework_TestCase
|
||||||
|
{
|
||||||
|
public function test${1}()
|
||||||
|
{
|
||||||
|
${2}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
endsnippet
|
||||||
|
|
||||||
|
snippet exp "phpunit expects" i
|
||||||
|
expects($this->${1:once}())
|
||||||
|
->method('${2}')
|
||||||
|
->with($this->equalTo(${3})${4})
|
||||||
|
->will($this->returnValue(${5}));
|
||||||
|
endsnippet
|
Loading…
x
Reference in New Issue
Block a user