Skip to content

2.6.3

Latest
Compare
Choose a tag to compare
@dereuromark dereuromark released this 21 Dec 01:23
123208e

Improvements

  • Improve MailerClassAnnotatorTask: Chainable usage now preferred:
       $this->getMailer('User')->send('forgotPassword', [$user]);
    will be annotated as
        /** @uses \App\Mailer\UserMailer::forgotPassword() */
       $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).