| 1 | <?php |
||
| 10 | abstract class AbstractBaseServiceTest extends TestCase |
||
| 11 | { |
||
| 12 | /** |
||
| 13 | * @var \eZ\Publish\API\Repository\Repository|\PHPUnit_Framework_MockObject_MockObject |
||
| 14 | */ |
||
| 15 | protected $innerRepositoryMock; |
||
| 16 | /** |
||
| 17 | * @var \eZ\Publish\Core\Repository\SiteAccessAware\Repository |
||
| 18 | */ |
||
| 19 | protected $siteAccessAwareRepositoryHandler; |
||
| 20 | /** |
||
| 21 | * @var \eZ\Publish\Core\Repository\Helper\LanguageResolver|\PHPUnit_Framework_MockObject_MockObject |
||
| 22 | */ |
||
| 23 | protected $languageHelperMock; |
||
| 24 | |||
| 25 | public function setUp() |
||
| 30 | |||
| 31 | protected function tearDown() |
||
| 36 | |||
| 37 | protected function getHandlerMock() |
||
| 53 | |||
| 54 | } |
||
| 55 |
This check looks for calls to methods that do not seem to exist on a given type. It looks for the method on the type itself as well as in inherited classes or implemented interfaces.
This is most likely a typographical error or the method has been renamed.