1 | <?php |
||
14 | class UserTest extends OrmTestCase |
||
15 | { |
||
16 | /** |
||
17 | * @var User |
||
18 | */ |
||
19 | protected $obj; |
||
20 | |||
21 | /** |
||
22 | * @var \Doctrine\ORM\EntityManager |
||
23 | */ |
||
24 | private $em; |
||
25 | |||
26 | /** |
||
27 | * Bootstrap |
||
28 | */ |
||
29 | public function setUp() |
||
41 | |||
42 | /** |
||
43 | * Shutdown |
||
44 | */ |
||
45 | public function tearDown() |
||
51 | |||
52 | /** |
||
53 | * @test |
||
54 | * @covers \User\Repository\User::findAll |
||
55 | */ |
||
56 | public function findAll() |
||
62 | |||
63 | /** |
||
64 | * @test |
||
65 | * @covers \User\Repository\User::findById |
||
66 | */ |
||
67 | public function findById() |
||
73 | } |
||
74 |
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.