summaryrefslogtreecommitdiffstats
path: root/src/math
diff options
context:
space:
mode:
authorDerick Rethans <github@derickrethans.nl>2006-09-25 08:11:08 +0000
committerDerick Rethans <github@derickrethans.nl>2006-09-25 08:11:08 +0000
commitcefc1cb0ecb1fa1a794eaa51e456a5329071257d (patch)
treee44508b84b22fc3b3737a04473a59aeafa2bb622 /src/math
parent39cc6e9237085d0034b4ec35ce3f5abaedfaadf6 (diff)
downloadzetacomponents-graph-cefc1cb0ecb1fa1a794eaa51e456a5329071257d.zip
zetacomponents-graph-cefc1cb0ecb1fa1a794eaa51e456a5329071257d.tar.gz
- Fixed CS issues.
Diffstat (limited to 'src/math')
-rw-r--r--src/math/polynom.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/math/polynom.php b/src/math/polynom.php
index 42b969d..e2d08f7 100644
--- a/src/math/polynom.php
+++ b/src/math/polynom.php
@@ -134,7 +134,7 @@ class ezcGraphPolynom
public function evaluate( $x )
{
$value = 0;
- foreach( $this->values as $exponent => $factor )
+ foreach ( $this->values as $exponent => $factor )
{
$value += $factor * pow( $x, $exponent );
}
OpenPOWER on IntegriCloud