Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordiosmosis <benakamoorthi@fastmail.fm>2014-08-26 08:53:01 +0400
committerdiosmosis <benakamoorthi@fastmail.fm>2014-08-26 08:53:01 +0400
commit63777c8158e50e4da66b13bb96c360f2550fcd0f (patch)
treebe0871d5efce3e1ec4b13a06c0d8b290079751e5 /plugins/ImageGraph
parente1341e728b2a6d96037c91b410c835be5b895742 (diff)
Fix typo in previous refactoring (Factory base type addition).
Diffstat (limited to 'plugins/ImageGraph')
-rw-r--r--plugins/ImageGraph/StaticGraph.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/ImageGraph/StaticGraph.php b/plugins/ImageGraph/StaticGraph.php
index 8adef6e411..b23e697dff 100644
--- a/plugins/ImageGraph/StaticGraph.php
+++ b/plugins/ImageGraph/StaticGraph.php
@@ -77,7 +77,7 @@ abstract class StaticGraph extends Factory
{
$className = self::$availableStaticGraphTypes[$graphType];
$className = __NAMESPACE__ . "\\StaticGraph\\" . $className;
- return new $className;
+ return $className;
}
protected static function getInvalidClassIdExceptionMessage($graphType)