@@ -61,25 +61,20 @@ discard block |
||
| 61 | 61 | |
| 62 | 62 | if ($style->mode === LaruploadMediaStyle::SCALE_HEIGHT and $style->width) { |
| 63 | 63 | $this->resizeLandscape($style->width); |
| 64 | - } |
|
| 65 | - else if ($style->mode == LaruploadMediaStyle::SCALE_WIDTH and $style->height) { |
|
| 64 | + } else if ($style->mode == LaruploadMediaStyle::SCALE_WIDTH and $style->height) { |
|
| 66 | 65 | $this->resizePortrait($style->height); |
| 67 | - } |
|
| 68 | - else if ($style->mode == LaruploadMediaStyle::CROP and $style->height and $style->width) { |
|
| 66 | + } else if ($style->mode == LaruploadMediaStyle::CROP and $style->height and $style->width) { |
|
| 69 | 67 | $this->resizeCrop($style->width, $style->height); |
| 70 | - } |
|
| 71 | - else if ($style->mode == LaruploadMediaStyle::FIT and $style->height and $style->width) { |
|
| 68 | + } else if ($style->mode == LaruploadMediaStyle::FIT and $style->height and $style->width) { |
|
| 72 | 69 | $this->resizeExact($style->width, $style->height); |
| 73 | - } |
|
| 74 | - else { |
|
| 70 | + } else { |
|
| 75 | 71 | $this->resizeAuto($style->width, $style->height); |
| 76 | 72 | } |
| 77 | 73 | |
| 78 | 74 | |
| 79 | 75 | if ($this->driverIsLocal) { |
| 80 | 76 | $this->save($saveTo); |
| 81 | - } |
|
| 82 | - else { |
|
| 77 | + } else { |
|
| 83 | 78 | list($path, $name) = split_larupload_path($saveTo); |
| 84 | 79 | |
| 85 | 80 | $tempDir = larupload_temp_dir(); |
@@ -110,8 +105,7 @@ discard block |
||
| 110 | 105 | |
| 111 | 106 | if ($file instanceof UploadedFile) { |
| 112 | 107 | $path = $file->getRealPath(); |
| 113 | - } |
|
| 114 | - else if (file_exists($file)) { |
|
| 108 | + } else if (file_exists($file)) { |
|
| 115 | 109 | $path = $file; |
| 116 | 110 | } |
| 117 | 111 | |