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 Foo\Bar; | |
use phpmock\MockBuilder; | |
use phpmock\phpunit\PHPMock; | |
use PHPUnit_Framework_TestCase; | |
class Baz | |
{ | |
/** |
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 | |
// helper trait | |
namespace Foo\Controller\Helper; | |
trait RedirectorHelper | |
{ | |
private $_redirectorHelper; | |
public function injectRedirectorHelper(RedirectorHelper $helper) | |
{ |