Skip to content

Commit

Permalink
chore: fix code style
Browse files Browse the repository at this point in the history
  • Loading branch information
glennjacobs authored and github-actions[bot] committed Dec 21, 2023
1 parent e4f076e commit 11b0756
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 11 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@
use Lunar\Admin\Filament\Resources\ProductTypeResource\Pages;
use Lunar\Admin\Support\Forms\Components\AttributeSelector;
use Lunar\Admin\Support\Resources\BaseResource;
use Lunar\Models\Product;
use Lunar\Models\Contracts\ProductType;
use Lunar\Models\Product;
use Lunar\Models\ProductVariant;

class ProductTypeResource extends BaseResource
Expand Down
2 changes: 1 addition & 1 deletion packages/core/src/Base/ModelManifest.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@

use Illuminate\Database\Eloquent\Model;
use Illuminate\Support\Facades\Route;
use Lunar\Models\Contracts;
use Lunar\Models;
use Lunar\Models\Contracts;

class ModelManifest implements ModelManifestInterface
{
Expand Down
4 changes: 0 additions & 4 deletions packages/core/src/Base/ModelManifestInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,6 @@

namespace Lunar\Base;

use Illuminate\Database\Eloquent\Model;
use Illuminate\Support\Collection;

interface ModelManifestInterface
{

}
4 changes: 0 additions & 4 deletions packages/core/src/Base/Traits/HasModelExtending.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,6 @@

namespace Lunar\Base\Traits;

use Illuminate\Database\Eloquent\Model;
use Lunar\Facades\ModelManifest;
use ReflectionClass;

trait HasModelExtending
{
//
Expand Down
4 changes: 3 additions & 1 deletion packages/core/src/Models/Contracts/ProductType.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,6 @@

namespace Lunar\Models\Contracts;

interface ProductType {}
interface ProductType
{
}

0 comments on commit 11b0756

Please sign in to comment.