Skip to content

Commit

Permalink
update snapshots
Browse files Browse the repository at this point in the history
  • Loading branch information
danharrin committed Jan 31, 2025
1 parent 3f11ea4 commit d7fa5ef
Show file tree
Hide file tree
Showing 55 changed files with 49 additions and 70 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ protected function addNavigationIconPropertyToClass(ClassType $class): void
$property = $class->addProperty('navigationIcon', 'heroicon-o-squares-2x2')
->setProtected()
->setStatic()
->setType('string | BackedEnum | null');
->setType('string|BackedEnum|null');
$this->configureNavigationIconProperty($property);
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ protected function addNavigationIconPropertyToClass(ClassType $class): void
$property = $class->addProperty('navigationIcon', 'heroicon-o-rectangle-stack')
->setProtected()
->setStatic()
->setType('string | BackedEnum | null');
->setType('string|BackedEnum|null');
$this->configureNavigationIconProperty($property);
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ protected function addNavigationIconPropertyToClass(ClassType $class): void
$property = $class->addProperty('navigationIcon', 'heroicon-o-rectangle-stack')
->setProtected()
->setStatic()
->setType('string | BackedEnum | null');
->setType('string|BackedEnum|null');
$this->configureNavigationIconProperty($property);
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ protected function addNavigationIconPropertyToClass(ClassType $class): void
$property = $class->addProperty('navigationIcon', 'heroicon-o-cog-6-tooth')
->setProtected()
->setStatic()
->setType('string | BackedEnum | null');
->setType('string|BackedEnum|null');
$this->configureNavigationIconProperty($property);
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,5 @@ use Filament\Clusters\Cluster;

class Blog extends Cluster
{
protected static string | BackedEnum | null $navigationIcon = 'heroicon-o-squares-2x2';
protected static string|BackedEnum|null $navigationIcon = 'heroicon-o-squares-2x2';
}
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,5 @@ use Filament\Clusters\Cluster;

class Blog extends Cluster
{
protected static string | BackedEnum | null $navigationIcon = 'heroicon-o-squares-2x2';
protected static string|BackedEnum|null $navigationIcon = 'heroicon-o-squares-2x2';
}
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ class ManageUserTeams extends ManageRelatedRecords

protected static string $relationship = 'teams';

protected static string | BackedEnum | null $navigationIcon = 'heroicon-o-rectangle-stack';
protected static string|BackedEnum|null $navigationIcon = 'heroicon-o-rectangle-stack';

public function form(Schema $schema): Schema
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ class ManageUserTeams extends ManageRelatedRecords

protected static string $relationship = 'teams';

protected static string | BackedEnum | null $navigationIcon = 'heroicon-o-rectangle-stack';
protected static string|BackedEnum|null $navigationIcon = 'heroicon-o-rectangle-stack';

public function form(Schema $schema): Schema
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ class ManageUserTeams extends ManageRelatedRecords

protected static string $relationship = 'teams';

protected static string | BackedEnum | null $navigationIcon = 'heroicon-o-rectangle-stack';
protected static string|BackedEnum|null $navigationIcon = 'heroicon-o-rectangle-stack';

public function form(Schema $schema): Schema
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ class ManageUserTeams extends ManageRelatedRecords

protected static string $relationship = 'teams';

protected static string | BackedEnum | null $navigationIcon = 'heroicon-o-rectangle-stack';
protected static string|BackedEnum|null $navigationIcon = 'heroicon-o-rectangle-stack';

protected static ?string $relatedResource = TeamResource::class;
}
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ class ManageUserTeams extends ManageRelatedRecords

protected static string $relationship = 'teams';

protected static string | BackedEnum | null $navigationIcon = 'heroicon-o-rectangle-stack';
protected static string|BackedEnum|null $navigationIcon = 'heroicon-o-rectangle-stack';

public function form(Schema $schema): Schema
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ class ManageUserTeams extends ManageRelatedRecords

protected static string $relationship = 'teams';

protected static string | BackedEnum | null $navigationIcon = 'heroicon-o-rectangle-stack';
protected static string|BackedEnum|null $navigationIcon = 'heroicon-o-rectangle-stack';

public function form(Schema $schema): Schema
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ class PostResource extends Resource
{
protected static ?string $model = Post::class;

protected static string | BackedEnum | null $navigationIcon = 'heroicon-o-rectangle-stack';
protected static string|BackedEnum|null $navigationIcon = 'heroicon-o-rectangle-stack';

public static function form(Schema $schema): Schema
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ class PostResource extends Resource
{
protected static ?string $model = Post::class;

protected static string | BackedEnum | null $navigationIcon = 'heroicon-o-rectangle-stack';
protected static string|BackedEnum|null $navigationIcon = 'heroicon-o-rectangle-stack';

public static function form(Schema $schema): Schema
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ class PostResource extends Resource
{
protected static ?string $model = Post::class;

protected static string | BackedEnum | null $navigationIcon = 'heroicon-o-rectangle-stack';
protected static string|BackedEnum|null $navigationIcon = 'heroicon-o-rectangle-stack';

public static function form(Schema $schema): Schema
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ class PostResource extends Resource
{
protected static ?string $model = Post::class;

protected static string | BackedEnum | null $navigationIcon = 'heroicon-o-rectangle-stack';
protected static string|BackedEnum|null $navigationIcon = 'heroicon-o-rectangle-stack';

public static function form(Schema $schema): Schema
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ class PostResource extends Resource
{
protected static ?string $model = Post::class;

protected static string | BackedEnum | null $navigationIcon = 'heroicon-o-rectangle-stack';
protected static string|BackedEnum|null $navigationIcon = 'heroicon-o-rectangle-stack';

public static function form(Schema $schema): Schema
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ use Filament\Tests\Panels\Commands\Legacy\Settings;

class ManageSettings extends SettingsPage
{
protected static string | BackedEnum | null $navigationIcon = 'heroicon-o-cog-6-tooth';
protected static string|BackedEnum|null $navigationIcon = 'heroicon-o-cog-6-tooth';

protected static string $settings = Settings::class;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ use Filament\Tests\Panels\Commands\Legacy\Settings;

class ManageSettings extends SettingsPage
{
protected static string | BackedEnum | null $navigationIcon = 'heroicon-o-cog-6-tooth';
protected static string|BackedEnum|null $navigationIcon = 'heroicon-o-cog-6-tooth';

protected static string $settings = Settings::class;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ use Filament\Tests\Panels\Commands\Legacy\Settings;

class ManageSettings extends SettingsPage
{
protected static string | BackedEnum | null $navigationIcon = 'heroicon-o-cog-6-tooth';
protected static string|BackedEnum|null $navigationIcon = 'heroicon-o-cog-6-tooth';

protected static string $settings = Settings::class;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ use Filament\Tests\Panels\Commands\Legacy\SettingsPropertyEnum;

class ManageSettings extends SettingsPage
{
protected static string | BackedEnum | null $navigationIcon = 'heroicon-o-cog-6-tooth';
protected static string|BackedEnum|null $navigationIcon = 'heroicon-o-cog-6-tooth';

protected static string $settings = Settings::class;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,5 @@ use Filament\Clusters\Cluster;

class BlogCluster extends Cluster
{
protected static string | BackedEnum | null $navigationIcon = 'heroicon-o-squares-2x2';
protected static string|BackedEnum|null $navigationIcon = 'heroicon-o-squares-2x2';
}
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,5 @@ use Filament\Clusters\Cluster;

class BlogCluster extends Cluster
{
protected static string | BackedEnum | null $navigationIcon = 'heroicon-o-squares-2x2';
protected static string|BackedEnum|null $navigationIcon = 'heroicon-o-squares-2x2';
}
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ class ManageUserTeams extends ManageRelatedRecords

protected static string $relationship = 'teams';

protected static string | BackedEnum | null $navigationIcon = 'heroicon-o-rectangle-stack';
protected static string|BackedEnum|null $navigationIcon = 'heroicon-o-rectangle-stack';

public function form(Schema $schema): Schema
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ class ManageUserTeams extends ManageRelatedRecords

protected static string $relationship = 'teams';

protected static string | BackedEnum | null $navigationIcon = 'heroicon-o-rectangle-stack';
protected static string|BackedEnum|null $navigationIcon = 'heroicon-o-rectangle-stack';

public function form(Schema $schema): Schema
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ class ManageUserTeams extends ManageRelatedRecords

protected static string $relationship = 'teams';

protected static string | BackedEnum | null $navigationIcon = 'heroicon-o-rectangle-stack';
protected static string|BackedEnum|null $navigationIcon = 'heroicon-o-rectangle-stack';

public function form(Schema $schema): Schema
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ class ManageUserTeams extends ManageRelatedRecords

protected static string $relationship = 'teams';

protected static string | BackedEnum | null $navigationIcon = 'heroicon-o-rectangle-stack';
protected static string|BackedEnum|null $navigationIcon = 'heroicon-o-rectangle-stack';

public function form(Schema $schema): Schema
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ class ManageUserTeams extends ManageRelatedRecords

protected static string $relationship = 'teams';

protected static string | BackedEnum | null $navigationIcon = 'heroicon-o-rectangle-stack';
protected static string|BackedEnum|null $navigationIcon = 'heroicon-o-rectangle-stack';

protected static ?string $relatedResource = TeamResource::class;
}
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ class ManageUserTeams extends ManageRelatedRecords

protected static string $relationship = 'teams';

protected static string | BackedEnum | null $navigationIcon = 'heroicon-o-rectangle-stack';
protected static string|BackedEnum|null $navigationIcon = 'heroicon-o-rectangle-stack';

public function form(Schema $schema): Schema
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ class ManageUserTeams extends ManageRelatedRecords

protected static string $relationship = 'teams';

protected static string | BackedEnum | null $navigationIcon = 'heroicon-o-rectangle-stack';
protected static string|BackedEnum|null $navigationIcon = 'heroicon-o-rectangle-stack';

public function form(Schema $schema): Schema
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ class ManageUserTeams extends ManageRelatedRecords

protected static string $relationship = 'teams';

protected static string | BackedEnum | null $navigationIcon = 'heroicon-o-rectangle-stack';
protected static string|BackedEnum|null $navigationIcon = 'heroicon-o-rectangle-stack';

public function form(Schema $schema): Schema
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ class ManageUserTeams extends ManageRelatedRecords

protected static string $relationship = 'teams';

protected static string | BackedEnum | null $navigationIcon = 'heroicon-o-rectangle-stack';
protected static string|BackedEnum|null $navigationIcon = 'heroicon-o-rectangle-stack';

public function form(Schema $schema): Schema
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ class PostResource extends Resource
{
protected static ?string $model = Post::class;

protected static string | BackedEnum | null $navigationIcon = 'heroicon-o-rectangle-stack';
protected static string|BackedEnum|null $navigationIcon = 'heroicon-o-rectangle-stack';

protected static ?string $parentResource = UserResource::class;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ class PostResource extends Resource
{
protected static ?string $model = Post::class;

protected static string | BackedEnum | null $navigationIcon = 'heroicon-o-rectangle-stack';
protected static string|BackedEnum|null $navigationIcon = 'heroicon-o-rectangle-stack';

protected static ?string $parentResource = UserResource::class;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ class PostResource extends Resource
{
protected static ?string $model = Post::class;

protected static string | BackedEnum | null $navigationIcon = 'heroicon-o-rectangle-stack';
protected static string|BackedEnum|null $navigationIcon = 'heroicon-o-rectangle-stack';

protected static ?string $parentResource = UserResource::class;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ class PostResource extends Resource
{
protected static ?string $model = Post::class;

protected static string | BackedEnum | null $navigationIcon = 'heroicon-o-rectangle-stack';
protected static string|BackedEnum|null $navigationIcon = 'heroicon-o-rectangle-stack';

protected static ?string $parentResource = UserResource::class;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ class PostResource extends Resource
{
protected static ?string $model = Post::class;

protected static string | BackedEnum | null $navigationIcon = 'heroicon-o-rectangle-stack';
protected static string|BackedEnum|null $navigationIcon = 'heroicon-o-rectangle-stack';

public static function form(Schema $schema): Schema
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ class PostResource extends Resource
{
protected static ?string $model = Post::class;

protected static string | BackedEnum | null $navigationIcon = 'heroicon-o-rectangle-stack';
protected static string|BackedEnum|null $navigationIcon = 'heroicon-o-rectangle-stack';

public static function form(Schema $schema): Schema
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ class PostResource extends Resource
{
protected static ?string $model = Post::class;

protected static string | BackedEnum | null $navigationIcon = 'heroicon-o-rectangle-stack';
protected static string|BackedEnum|null $navigationIcon = 'heroicon-o-rectangle-stack';

public static function form(Schema $schema): Schema
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ class PostResource extends Resource
{
protected static ?string $model = Post::class;

protected static string | BackedEnum | null $navigationIcon = 'heroicon-o-rectangle-stack';
protected static string|BackedEnum|null $navigationIcon = 'heroicon-o-rectangle-stack';

public static function form(Schema $schema): Schema
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ class PostResource extends Resource
{
protected static ?string $model = Post::class;

protected static string | BackedEnum | null $navigationIcon = 'heroicon-o-rectangle-stack';
protected static string|BackedEnum|null $navigationIcon = 'heroicon-o-rectangle-stack';

public static function form(Schema $schema): Schema
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ class PostResource extends Resource
{
protected static ?string $model = Post::class;

protected static string | BackedEnum | null $navigationIcon = 'heroicon-o-rectangle-stack';
protected static string|BackedEnum|null $navigationIcon = 'heroicon-o-rectangle-stack';

public static function form(Schema $schema): Schema
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ class PostResource extends Resource
{
protected static ?string $model = Post::class;

protected static string | BackedEnum | null $navigationIcon = 'heroicon-o-rectangle-stack';
protected static string|BackedEnum|null $navigationIcon = 'heroicon-o-rectangle-stack';

public static function form(Schema $schema): Schema
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ class PostResource extends Resource
{
protected static ?string $model = Post::class;

protected static string | BackedEnum | null $navigationIcon = 'heroicon-o-rectangle-stack';
protected static string|BackedEnum|null $navigationIcon = 'heroicon-o-rectangle-stack';

public static function form(Schema $schema): Schema
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ class PostResource extends Resource
{
protected static ?string $model = Post::class;

protected static string | BackedEnum | null $navigationIcon = 'heroicon-o-rectangle-stack';
protected static string|BackedEnum|null $navigationIcon = 'heroicon-o-rectangle-stack';

public static function form(Schema $schema): Schema
{
Expand Down
Loading

0 comments on commit d7fa5ef

Please sign in to comment.