Skip to content

Commit

Permalink
Fix styling
Browse files Browse the repository at this point in the history
  • Loading branch information
francoism90 authored and github-actions[bot] committed Jul 7, 2024
1 parent 00610d8 commit 667a6cb
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 8 deletions.
3 changes: 1 addition & 2 deletions src/Forms/Components/Input.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,7 @@ public function __construct(
public ?Html $append = null,
public ?Html $label = null,
public ?Html $hint = null,
) {
}
) {}

public function render(): View|Closure|string
{
Expand Down
3 changes: 1 addition & 2 deletions src/Layout/Components/Container.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,7 @@ class Container extends Component
{
public function __construct(
public bool $fluid = false,
) {
}
) {}

public function render(): View|Closure|string
{
Expand Down
3 changes: 1 addition & 2 deletions src/Layout/Components/Join.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,7 @@ class Join extends Component
{
public function __construct(
public bool $fluid = false,
) {
}
) {}

public function render(): View|Closure|string
{
Expand Down
1 change: 0 additions & 1 deletion src/Support/Html/Mixins/BaseElementMixin.php
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,6 @@ public function wireModel()
{
return function (string $key, ?string $modifiers = null) {
/** @var BaseElement $this */

$directive = str('wire:model')
->when($modifiers, fn (Stringable $str) => $str->append(".{$modifiers}"))
->squish();
Expand Down
2 changes: 1 addition & 1 deletion src/WireUseServiceProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
namespace Foxws\WireUse;

use Foxws\WireUse\Support\Blade\Bladeable;
use Foxws\WireUse\Support\Html\Mixins\BaseElementMixin;
use Foxws\WireUse\Support\Html\HtmlExtended;
use Foxws\WireUse\Support\Html\Mixins\BaseElementMixin;
use Illuminate\Support\Facades\Blade;
use Illuminate\View\ComponentAttributeBag;
use Spatie\Html\BaseElement;
Expand Down

0 comments on commit 667a6cb

Please sign in to comment.