| 1 | <?php |
||
| 13 | class TaskNameIsUniqueSpecificationSpec extends ObjectBehavior |
||
| 14 | { |
||
| 15 | protected $taskRepository; |
||
| 16 | |||
| 17 | protected $taskNameExists = 'Buying milk'; |
||
| 18 | protected $taskNameNonExists = 'Buying sugar'; |
||
| 19 | protected $task; |
||
| 20 | |||
| 21 | function it_is_initializable() |
||
| 25 | |||
| 26 | function let(TaskRepositoryInterface $taskRepository) |
||
| 42 | |||
| 43 | function it_is_satisfied() |
||
| 50 | } |
||
| 51 |
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.