coding convention applied
This commit is contained in:
parent
a2ccdf1fec
commit
cd2ed72b37
1 changed files with 2 additions and 1 deletions
|
@ -68,10 +68,11 @@ class Photo {
|
||||||
$this->image->destroy();
|
$this->image->destroy();
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
if (is_resource($this->image))
|
if (is_resource($this->image)) {
|
||||||
imagedestroy($this->image);
|
imagedestroy($this->image);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
public function is_imagick() {
|
public function is_imagick() {
|
||||||
return $this->imagick;
|
return $this->imagick;
|
||||||
|
|
Loading…
Reference in a new issue