diff options
author | Derick Rethans <github@derickrethans.nl> | 2006-09-25 08:11:08 +0000 |
---|---|---|
committer | Derick Rethans <github@derickrethans.nl> | 2006-09-25 08:11:08 +0000 |
commit | cefc1cb0ecb1fa1a794eaa51e456a5329071257d (patch) | |
tree | e44508b84b22fc3b3737a04473a59aeafa2bb622 /src/interfaces/element.php | |
parent | 39cc6e9237085d0034b4ec35ce3f5abaedfaadf6 (diff) | |
download | zetacomponents-graph-cefc1cb0ecb1fa1a794eaa51e456a5329071257d.zip zetacomponents-graph-cefc1cb0ecb1fa1a794eaa51e456a5329071257d.tar.gz |
- Fixed CS issues.
Diffstat (limited to 'src/interfaces/element.php')
-rw-r--r-- | src/interfaces/element.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/interfaces/element.php b/src/interfaces/element.php index 9d5a678..3ddc5e6 100644 --- a/src/interfaces/element.php +++ b/src/interfaces/element.php @@ -118,7 +118,7 @@ abstract class ezcGraphChartElement extends ezcBaseOptions $this->properties['margin'] = max( 0, (int) $propertyValue ); break; case 'borderWidth': - $this->properties['borderWidth'] = max( 0, (int) $propertyValue); + $this->properties['borderWidth'] = max( 0, (int) $propertyValue ); break; case 'font': if ( $propertyValue instanceof ezcGraphFontOptions ) |