Skip to content

Commit

Permalink
Fix styling
Browse files Browse the repository at this point in the history
  • Loading branch information
199ocero authored and github-actions[bot] committed Dec 7, 2024
1 parent 0f99986 commit f99c407
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/RadioDeckServiceProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ public function packageBooted(): void
FilamentIcon::register($this->getIcons());

// Testing
Testable::mixin(new TestsRadioDeck());
Testable::mixin(new TestsRadioDeck);
}

protected function getAssetPackageName(): ?string
Expand Down
2 changes: 1 addition & 1 deletion src/Traits/HasExtraCardsAttributes.php
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ public function extraCardsAttributes(array|Closure $attributes, bool $merge = fa
*/
public function getExtraCardsAttributes(): array
{
$temporaryAttributeBag = new ComponentAttributeBag();
$temporaryAttributeBag = new ComponentAttributeBag;

foreach ($this->extraCardsAttributes as $extraCardsAttributes) {
$temporaryAttributeBag = $temporaryAttributeBag->merge($this->evaluate($extraCardsAttributes));
Expand Down
2 changes: 1 addition & 1 deletion src/Traits/HasExtraDescriptionsAttributes.php
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ public function extraDescriptionsAttributes(array|Closure $attributes, bool $mer
*/
public function getExtraDescriptionsAttributes(): array
{
$temporaryAttributeBag = new ComponentAttributeBag();
$temporaryAttributeBag = new ComponentAttributeBag;

foreach ($this->extraDescriptionsAttributes as $extraDescriptionsAttributes) {
$temporaryAttributeBag = $temporaryAttributeBag->merge($this->evaluate($extraDescriptionsAttributes));
Expand Down
2 changes: 1 addition & 1 deletion src/Traits/HasExtraOptionsAttributes.php
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ public function extraOptionsAttributes(array|Closure $attributes, bool $merge =
*/
public function getExtraOptionsAttributes(): array
{
$temporaryAttributeBag = new ComponentAttributeBag();
$temporaryAttributeBag = new ComponentAttributeBag;

foreach ($this->extraOptionsAttributes as $extraOptionsAttributes) {
$temporaryAttributeBag = $temporaryAttributeBag->merge($this->evaluate($extraOptionsAttributes));
Expand Down

0 comments on commit f99c407

Please sign in to comment.