Skip to content

Commit

Permalink
Merge pull request #287 from dissto/add-missing-spaces-after
Browse files Browse the repository at this point in the history
Add missing spaces after
  • Loading branch information
CodeWithDennis authored Jul 3, 2024
2 parents e75ef8d + 29cb53b commit 981e2f5
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 10 deletions.
4 changes: 1 addition & 3 deletions src/FilamentTests.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,4 @@

namespace CodeWithDennis\FilamentTests;

class FilamentTests
{
}
class FilamentTests {}
4 changes: 1 addition & 3 deletions src/Handlers/StubHandler.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,7 @@

class StubHandler
{
public function __construct(public Resource $resource)
{
}
public function __construct(public Resource $resource) {}

public function setResource(Resource $resource): static
{
Expand Down
4 changes: 1 addition & 3 deletions src/Stubs/Base.php
Original file line number Diff line number Diff line change
Expand Up @@ -34,9 +34,7 @@ class Base

public Closure|bool $shouldGenerateWithTodos = true;

public function __construct(public Resource $resource, public ?string $relationManager = null)
{
}
public function __construct(public Resource $resource, public ?string $relationManager = null) {}

public static function make(Resource $resource, ?string $relationManager = null): static
{
Expand Down
2 changes: 1 addition & 1 deletion stubs/Resource/Page/Index/Table/Column/Search.stub
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@ it({{ DESCRIPTION }}, function (string $column) {
livewire({{ RESOURCE_LIST_CLASS }})
->searchTable($search instanceof BackedEnum ? $search->value : $search){{ LOAD_TABLE_METHOD_IF_DEFERRED }}
->assertCanSeeTableRecords($records->filter(fn ($record) => data_get($record, $column) == $search));
})->with({{ RESOURCE_TABLE_SEARCHABLE_COLUMNS }}){{ RESOLVED_GROUP_METHOD }};
})->with({{ RESOURCE_TABLE_SEARCHABLE_COLUMNS }}){{ RESOLVED_GROUP_METHOD }};

0 comments on commit 981e2f5

Please sign in to comment.