diff options
author | Kore Nordmann <github@kore-nordmann.de> | 2007-06-12 14:56:09 +0000 |
---|---|---|
committer | Kore Nordmann <github@kore-nordmann.de> | 2007-06-12 14:56:09 +0000 |
commit | a04a1d75f93fc556d9838c9d5de9216521642ede (patch) | |
tree | dd8f96fbb08b905ad7cf588e0a9aedf1e8e908b1 /src/math | |
parent | b33909275f604b119c59972779a47a4288e0f5ec (diff) | |
download | zetacomponents-graph-a04a1d75f93fc556d9838c9d5de9216521642ede.zip zetacomponents-graph-a04a1d75f93fc556d9838c9d5de9216521642ede.tar.gz |
- Fixed initialisations of struct variables
# Detected by doc coverage
Diffstat (limited to 'src/math')
-rw-r--r-- | src/math/boundings.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/math/boundings.php b/src/math/boundings.php index b6dd5f0..b5286c7 100644 --- a/src/math/boundings.php +++ b/src/math/boundings.php @@ -57,7 +57,7 @@ class ezcGraphBoundings * @param float $y1 Bottom right y coordinate * @return ezcGraphBoundings */ - public function __construct( $x0 = 0., $y0 = 0., $x1 = false, $y1 = false ) + public function __construct( $x0 = 0., $y0 = 0., $x1 = null, $y1 = null ) { $this->x0 = $x0; $this->y0 = $y0; |