Skip to content

Commit 8b7d376

Browse files
author
Mitch
committed
Whitespace
1 parent 69c93ce commit 8b7d376

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/ImageResize.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ class ImageResize
4545
* @return ImageResize
4646
* @throws \Exception
4747
*/
48-
public static function createFromFile($filename){
48+
public static function createFromFile($filename) {
4949
$s = new self();
5050
$s->loadFromFile($filename);
5151
return $s;
@@ -58,7 +58,7 @@ public static function createFromFile($filename){
5858
* @return ImageResize
5959
* @throws \exception
6060
*/
61-
public static function createFromString($imageData){
61+
public static function createFromString($imageData) {
6262
$s = new self();
6363
$s->loadFromString($imageData);
6464
return $s;
@@ -236,7 +236,7 @@ public function save($filename, $image_type = null, $quality = null, $permission
236236
* @param int $quality
237237
* @return string
238238
*/
239-
public function getImageAsString($image_type = null, $quality = null){
239+
public function getImageAsString($image_type = null, $quality = null) {
240240
$string_temp = tempnam('', '');
241241

242242
$this->save($string_temp, $image_type, $quality);

0 commit comments

Comments
 (0)