Conditions | 2 |
Paths | 2 |
Total Lines | 11 |
Code Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
60 | public function save($outputPath = '') |
||
61 | { |
||
62 | if ($outputPath == '') { |
||
63 | $outputPath = $this->pathToImage; |
||
64 | } |
||
65 | |||
66 | GlideManipulator::create($this->pathToImage) |
||
67 | ->useImageDriver($this->imageDriver) |
||
68 | ->performManipulations($this->manipulations) |
||
69 | ->save($outputPath); |
||
70 | } |
||
71 | } |
||
72 |
This check looks for function calls that miss required arguments.