File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change 22
33namespace Illuminated \Helpers \Artisan ;
44
5- use Mockery as m ;
5+ use Mockery ;
66use PHPUnit_Framework_Error ;
77use TestCase ;
88
@@ -12,12 +12,12 @@ class CommandTest extends TestCase
1212
1313 protected function setUp ()
1414 {
15- self ::$ functions = m ::mock ();
15+ self ::$ functions = Mockery ::mock ();
1616
17- $ phpBinaryMock = m ::mock ('overload:Symfony\Component\Process\PhpExecutableFinder ' );
17+ $ phpBinaryMock = Mockery ::mock ('overload:Symfony\Component\Process\PhpExecutableFinder ' );
1818 $ phpBinaryMock ->shouldReceive ('find ' )->with (false )->zeroOrMoreTimes ()->andReturn ('php ' );
1919
20- $ utilsMock = m ::mock ('alias:Symfony\Component\Process\ProcessUtils ' );
20+ $ utilsMock = Mockery ::mock ('alias:Symfony\Component\Process\ProcessUtils ' );
2121 $ utilsMock ->shouldReceive ('escapeArgument ' )->withAnyArgs ()->zeroOrMoreTimes ()->andReturnUsing (function ($ value ) {
2222 return $ value ;
2323 });
You can’t perform that action at this time.
0 commit comments