- Add the following lines of code to the end of the
depsfile:
[lessphp]
git=https://github.com/leafo/lessphp.git
target=/lessphp
version=v0.3.2
| #!/bin/zsh | |
| # git-fshow - git commit browser | |
| # | |
| # https://gist.github.com/akatrevorjay/9fc061e8371529c4007689a696d33c62 | |
| # https://asciinema.org/a/101366 | |
| # | |
| git-fshow() { | |
| local g=( | |
| git log |
| <?php | |
| class AbstractManagerBase extends \PHPUnit_Framework_TestCase | |
| { | |
| protected function getEmMock() | |
| { | |
| $emMock = $this->getMock('\Doctrine\ORM\EntityManager', | |
| array('getRepository', 'getClassMetadata', 'persist', 'flush'), array(), '', false); | |
| $emMock->expects($this->any()) | |
| ->method('getRepository') |