| Conditions | 1 |
| Paths | 1 |
| Total Lines | 8 |
| Code Lines | 4 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 3 | ||
| Bugs | 1 | Features | 1 |
| 1 | <?php namespace Camelcased\Postmark; |
||
| 21 | public function register() |
||
| 22 | { |
||
| 23 | $this->app['postmarkEmail'] = $this->app->share(function($app) |
||
|
|
|||
| 24 | { |
||
| 25 | $parser = new Parser($app["Input"]->get()); // Create an instance of the parser with the given input |
||
| 26 | return new Email($parser->parse()); // Returns an instance of the given email as an Email object |
||
| 27 | }); |
||
| 28 | } |
||
| 29 | |||
| 41 |
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.