| 1 | <?php |
||
| 14 | class DrupalMailManager implements DrupalMailManagerInterface { |
||
| 15 | |||
| 16 | /** |
||
| 17 | * The active Drupal driver. |
||
| 18 | * |
||
| 19 | * @var \Drupal\Driver\DriverInterface |
||
| 20 | */ |
||
| 21 | protected $driver; |
||
| 22 | |||
| 23 | public function __construct(DriverInterface $driver) { |
||
| 26 | |||
| 27 | /** |
||
| 28 | * {@inheritdoc} |
||
| 29 | */ |
||
| 30 | public function startCollectingMail() { |
||
| 34 | |||
| 35 | /** |
||
| 36 | * {@inheritdoc} |
||
| 37 | */ |
||
| 38 | public function stopCollectingMail() { |
||
| 41 | |||
| 42 | /** |
||
| 43 | * {@inheritdoc} |
||
| 44 | */ |
||
| 45 | public function enableMail() { |
||
| 48 | |||
| 49 | /** |
||
| 50 | * {@inheritdoc} |
||
| 51 | */ |
||
| 52 | public function disableMail() { |
||
| 55 | |||
| 56 | /** |
||
| 57 | * {@inheritdoc} |
||
| 58 | */ |
||
| 59 | public function getMail($store = 'default') { |
||
| 62 | |||
| 63 | /** |
||
| 64 | * {@inheritdoc} |
||
| 65 | */ |
||
| 66 | public function clearMail($store = 'default') { |
||
| 69 | |||
| 70 | } |
||
| 71 |
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.