Skip to content

Commit

Permalink
Merge pull request #26 from austincarpenter/austin/import-closure
Browse files Browse the repository at this point in the history
Import `Closure`
  • Loading branch information
199ocero authored Dec 7, 2024
2 parents a0a44c7 + 8fb635f commit 0f99986
Show file tree
Hide file tree
Showing 7 changed files with 11 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/Traits/HasDirection.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

namespace JaOcero\RadioDeck\Traits;

use Closure;

trait HasDirection
{
protected string|Closure|null $direction = null;
Expand Down
1 change: 1 addition & 0 deletions src/Traits/HasExtraCardsAttributes.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

namespace JaOcero\RadioDeck\Traits;

use Closure;
use Illuminate\View\ComponentAttributeBag;

trait HasExtraCardsAttributes
Expand Down
1 change: 1 addition & 0 deletions src/Traits/HasExtraDescriptionsAttributes.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

namespace JaOcero\RadioDeck\Traits;

use Closure;
use Illuminate\View\ComponentAttributeBag;

trait HasExtraDescriptionsAttributes
Expand Down
1 change: 1 addition & 0 deletions src/Traits/HasExtraOptionsAttributes.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

namespace JaOcero\RadioDeck\Traits;

use Closure;
use Illuminate\View\ComponentAttributeBag;

trait HasExtraOptionsAttributes
Expand Down
2 changes: 2 additions & 0 deletions src/Traits/HasGap.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

namespace JaOcero\RadioDeck\Traits;

use Closure;

trait HasGap
{
protected string|Closure|null $gap = null;
Expand Down
2 changes: 2 additions & 0 deletions src/Traits/HasIconSizes.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

namespace JaOcero\RadioDeck\Traits;

use Closure;

trait HasIconSizes
{
protected array|Closure|null $iconSizes = [];
Expand Down
2 changes: 2 additions & 0 deletions src/Traits/HasPadding.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

namespace JaOcero\RadioDeck\Traits;

use Closure;

trait HasPadding
{
protected string|Closure|null $padding = null;
Expand Down

0 comments on commit 0f99986

Please sign in to comment.