1 | <?php |
||
38 | abstract class AbstractMessageListener implements MessageListenerInterface |
||
39 | { |
||
40 | |||
41 | /** |
||
42 | * The application instance that provides the entity manager. |
||
43 | * |
||
44 | * @var \AppserverIo\Psr\Application\ApplicationInterface |
||
45 | * @EPB\Resource(name="ApplicationInterface") |
||
46 | */ |
||
47 | protected $application; |
||
48 | |||
49 | /** |
||
50 | * Returns the application instance. |
||
51 | * |
||
52 | * @return \AppserverIo\Psr\Application\ApplicationInterface The application instance |
||
53 | */ |
||
54 | public function getApplication() |
||
58 | |||
59 | /** |
||
60 | * Updates the message monitor over the applications queue manager method. |
||
61 | * |
||
62 | * @param \AppserverIo\Psr\Pms\MessageInterface $message The message to update the monitor for |
||
63 | * |
||
64 | * @return void |
||
65 | * @throws \AppserverIo\Psr\Pms\MessageQueueException Is thrown if no queue manager is registered in the application |
||
66 | */ |
||
67 | protected function updateMonitor(MessageInterface $message) |
||
81 | } |
||
82 |
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.