Skip to content

Commit

Permalink
Fix styling
Browse files Browse the repository at this point in the history
  • Loading branch information
lee-to authored and github-actions[bot] committed Nov 30, 2024
1 parent a07002f commit f541c6b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
3 changes: 1 addition & 2 deletions src/Laravel/src/Traits/Fields/WithRelatedLink.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
namespace MoonShine\Laravel\Traits\Fields;

use Closure;
use Illuminate\Contracts\Pagination\LengthAwarePaginator;
use Illuminate\Support\Collection;
use MoonShine\Contracts\UI\ActionButtonContract;
use MoonShine\Laravel\Fields\Relationships\BelongsToMany;
Expand Down Expand Up @@ -44,7 +43,7 @@ public function toRelatedCollection(): Collection

protected function isRelatedLink(): bool
{
if($this->isRelatedLink === false) {
if ($this->isRelatedLink === false) {
return false;
}

Expand Down
2 changes: 1 addition & 1 deletion src/Laravel/src/Traits/Resource/ResourceModelQuery.php
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ public function customQueryBuilder(Builder $builder): static
*/
protected function queryBuilderFeatures(): void
{
if($this->isDisabledQueryFeatures()) {
if ($this->isDisabledQueryFeatures()) {
return;
}

Expand Down

0 comments on commit f541c6b

Please sign in to comment.