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/datasets | |
parent | 39cc6e9237085d0034b4ec35ce3f5abaedfaadf6 (diff) | |
download | zetacomponents-graph-cefc1cb0ecb1fa1a794eaa51e456a5329071257d.zip zetacomponents-graph-cefc1cb0ecb1fa1a794eaa51e456a5329071257d.tar.gz |
- Fixed CS issues.
Diffstat (limited to 'src/datasets')
-rw-r--r-- | src/datasets/base.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/datasets/base.php b/src/datasets/base.php index e7880c7..8a41818 100644 --- a/src/datasets/base.php +++ b/src/datasets/base.php @@ -145,7 +145,8 @@ abstract class ezcGraphDataSet implements ArrayAccess, Iterator */ public function __get( $propertyName ) { - if ( isset( $this->$propertyName ) ) { + if ( isset( $this->$propertyName ) ) + { return $this->$propertyName; } else |