Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions libchart/classes/view/chart/Chart.php
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ abstract class Chart {
* @param integer width of the image
* @param integer height of the image
*/
protected function Chart($width, $height) {
protected function __construct($width, $height) {
// Initialize the configuration
$this->config = new ChartConfig();

Expand Down Expand Up @@ -116,4 +116,4 @@ public function setTitle($title) {
$this->plot->setTitle($title);
}
}
?>
?>