This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
namespace PHPSTORM_META { | |
$STATIC_METHOD_TYPES = [ | |
\PHPUnit_Framework_TestCase::createMock('') => [ | |
"" == "@|PHPUnit_Framework_MockObject_MockObject", | |
], | |
\PHPUnit_Framework_TestCase::getMock('') => [ | |
"" == "@|PHPUnit_Framework_MockObject_MockObject", | |
], |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Put this file at: .git/hooks/post-checkout | |
# and make it executable | |
# You can install it system wide too, see http://stackoverflow.com/a/2293578/685587 | |
PREV_COMMIT=$1 | |
POST_COMMIT=$2 | |
NOCOLOR='\e[0m' |