Skip to content

Commit

Permalink
refactor: add IsFluent trait to apex chart class
Browse files Browse the repository at this point in the history
  • Loading branch information
epessine committed Feb 24, 2024
1 parent 7a758e7 commit f27aead
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/Charts/Apex.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,13 @@
use Axis\Interfaces\Javascriptable;
use Axis\Interfaces\Renderable;
use Axis\Traits\AsAxisChart;
use Axis\Traits\IsFluent;
use Illuminate\Contracts\Support\Htmlable;
use Serializable;

final class Apex implements Htmlable, Javascriptable, Renderable, Serializable
{
use AsAxisChart;
use AsAxisChart, IsFluent;

public function getContainerElement(): string
{
Expand Down

0 comments on commit f27aead

Please sign in to comment.