Improvements
- Improve MailerClassAnnotatorTask: Chainable usage now preferred:
will be annotated as
$this->getMailer('User')->send('forgotPassword', [$user]);
To be able to follow it through a click in the IDE and also for the method to be checkable for usage (IDE => jump to the usage)./** @uses \App\Mailer\UserMailer::forgotPassword() */ $this->getMailer('User')->send('forgotPassword', [$user]);