diff options
author | Derick Rethans <github@derickrethans.nl> | 2007-06-20 13:22:09 +0000 |
---|---|---|
committer | Derick Rethans <github@derickrethans.nl> | 2007-06-20 13:22:09 +0000 |
commit | 3b3960da560336f4810f0ed43dd6a86cf4d432f1 (patch) | |
tree | 10877d2ef8eb8150d343834a03e07cbe79c1707b /src/driver | |
parent | a592d91b0a69c421d842c9315ad73adedb521421 (diff) | |
download | zetacomponents-graph-3b3960da560336f4810f0ed43dd6a86cf4d432f1.zip zetacomponents-graph-3b3960da560336f4810f0ed43dd6a86cf4d432f1.tar.gz |
- Fixed CS.
Diffstat (limited to 'src/driver')
-rw-r--r-- | src/driver/flash.php | 4 | ||||
-rw-r--r-- | src/driver/svg.php | 6 |
2 files changed, 6 insertions, 4 deletions
diff --git a/src/driver/flash.php b/src/driver/flash.php index b84ad9f..0eda757 100644 --- a/src/driver/flash.php +++ b/src/driver/flash.php @@ -199,7 +199,7 @@ class ezcGraphFlashDriver extends ezcGraphDriver { $points = $this->reducePolygonSize( $points, $thickness / 2 ); } - catch( ezcGraphReducementFailedException $e ) + catch ( ezcGraphReducementFailedException $e ) { return false; } @@ -636,7 +636,7 @@ class ezcGraphFlashDriver extends ezcGraphDriver { $reduced = $this->reduceEllipseSize( $center, $width, $height, $startAngle, $endAngle, .5 ); } - catch( ezcGraphReducementFailedException $e ) + catch ( ezcGraphReducementFailedException $e ) { return false; } diff --git a/src/driver/svg.php b/src/driver/svg.php index 0160674..00253db 100644 --- a/src/driver/svg.php +++ b/src/driver/svg.php @@ -336,7 +336,8 @@ class ezcGraphSvgDriver extends ezcGraphDriver try { $points = $this->reducePolygonSize( $points, $thickness / 2 ); - } catch ( ezcGraphReducementFailedException $e ) + } + catch ( ezcGraphReducementFailedException $e ) { return false; } @@ -863,7 +864,8 @@ class ezcGraphSvgDriver extends ezcGraphDriver try { $reduced = $this->reduceEllipseSize( $center, $width * 2, $height * 2, $startAngle, $endAngle, .5 ); - } catch ( ezcGraphReducementFailedException $e ) + } + catch ( ezcGraphReducementFailedException $e ) { return false; } |