| Conditions | 5 |
| Paths | 4 |
| Total Lines | 15 |
| Code Lines | 8 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 7 |
| CRAP Score | 5.0488 |
| Changes | 3 | ||
| Bugs | 0 | Features | 1 |
| 1 | <?php |
||
| 49 | 2 | public function setPath($pValue = '', $pVerifyFile = true) |
|
| 50 | { |
||
| 51 | 2 | if ($pVerifyFile) { |
|
| 52 | 2 | if (!file_exists($pValue)) { |
|
| 53 | throw new \Exception("File $pValue not found!"); |
||
| 54 | } |
||
| 55 | |||
| 56 | 2 | if ($this->width == 0 && $this->height == 0) { |
|
| 57 | // Get width/height |
||
| 58 | 2 | list($this->width, $this->height) = getimagesize($pValue); |
|
| 59 | } |
||
| 60 | } |
||
| 61 | 2 | $this->path = $pValue; |
|
| 62 | 2 | return $this; |
|
| 63 | } |
||
| 64 | |||
| 97 |