Skip to content

Commit

Permalink
fixed class name issue..
Browse files Browse the repository at this point in the history
  • Loading branch information
cuneytsenturk committed Jan 26, 2022
1 parent 1f0b40e commit a14bd74
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions src/Charts.php
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ public function getId()
* @param null $type
* @return $this
*/
public function setType($type = null) :Apexcharts
public function setType($type = null) :Charts
{
$this->type = $type;

Expand All @@ -147,7 +147,7 @@ public function getType()
* @param string $color
* @return $this
*/
public function setColor($color) :Apexcharts
public function setColor($color) :Charts
{
$colors = $this->colors;

Expand All @@ -161,7 +161,7 @@ public function setColor($color) :Apexcharts
* @param array $colors
* @return $this
*/
public function setColors($colors) :Apexcharts
public function setColors($colors) :Charts
{
$this->colors = $colors;

Expand All @@ -185,7 +185,7 @@ public function getColors()
* @param array $labels
* @return $this
*/
public function setLabels($labels) :Apexcharts
public function setLabels($labels) :Charts
{
$this->labels = $labels;

Expand All @@ -209,7 +209,7 @@ public function getLabels()
* @param array $series
* @return $this
*/
public function setSeries($series) :Apexcharts
public function setSeries($series) :Charts
{
$this->series = $series;

Expand Down Expand Up @@ -257,7 +257,7 @@ public function setDataset(string $name, string $type, $data)
*
* @return $this
*/
public function setOption($options = []) :Apexcharts
public function setOption($options = []) :Charts
{
if ($options instanceof Collection) {
$options = $options->toArray();
Expand All @@ -274,7 +274,7 @@ public function setOption($options = []) :Apexcharts
* @param bool $overwrite
* @return $this
*/
public function setOptions($options = [], bool $overwrite = false) :Apexcharts
public function setOptions($options = [], bool $overwrite = false) :Charts
{
if ($options instanceof Collection) {
$options = $options->toArray();
Expand Down

0 comments on commit a14bd74

Please sign in to comment.