| 1 | <?php |
||
| 8 | class LobChannel |
||
| 9 | { |
||
| 10 | /** @var \Lob\Lob */ |
||
| 11 | protected $lob; |
||
| 12 | |||
| 13 | /** |
||
| 14 | * @param \Lob\Lob $lob |
||
| 15 | */ |
||
| 16 | public function __construct(Lob $lob) |
||
| 20 | |||
| 21 | /** |
||
| 22 | * Send the given notification. |
||
| 23 | * |
||
| 24 | * @param mixed $notifiable |
||
| 25 | * @param \Illuminate\Notifications\Notification $notification |
||
| 26 | */ |
||
| 27 | public function send($notifiable, Notification $notification) |
||
| 39 | } |
||
| 40 |
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.