| Conditions | 1 |
| Paths | 1 |
| Total Lines | 8 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 13 | public function create() : AbstractEngine |
||
| 14 | { |
||
| 15 | $loaderMustache = new \Mustache_Engine([ |
||
| 16 | 'loader' => new MustacheLoader(), 'partials_loader' => new MustachePartialsLoader()] |
||
|
|
|||
| 17 | ); |
||
| 18 | $stringMustache = new \Mustache_Engine(['partials_loader' => new MustachePartialsLoader()]); |
||
| 19 | return new MustacheEngine($loaderMustache, $stringMustache); |
||
| 20 | } |
||
| 21 | } |
||
| 22 |
This check looks for function calls that miss required arguments.