Skip to content

Commit

Permalink
Cleaned up whitespace
Browse files Browse the repository at this point in the history
  • Loading branch information
Woody Gilk committed Nov 8, 2009
1 parent de4ff20 commit 97e8753
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions classes/kohana/image.php
Original file line number Diff line number Diff line change
Expand Up @@ -399,7 +399,7 @@ public function reflection($height = NULL, $opacity = 100, $fade_in = FALSE)

// The opacity must be in the range of 0 to 100
$opacity = min(max($opacity, 0), 100);

$this->_do_reflection($height, $opacity, $fade_in);

return $this;
Expand Down Expand Up @@ -485,7 +485,7 @@ public function background($color, $opacity = 100)

// The opacity must be in the range of 0 to 100
$opacity = min(max($opacity, 0), 100);

$this->_do_background($r, $g, $b, $opacity);

return $this;
Expand Down Expand Up @@ -526,7 +526,7 @@ public function save($file = NULL, $quality = 100)
array(':directory' => Kohana::debug_path($directory)));
}
}

// The quality must be in the range of 1 to 100
$quality = min(max($quality, 1), 100);

Expand Down

0 comments on commit 97e8753

Please sign in to comment.