Skip to content

Commit c184b94

Browse files
AzGasimgithub-actions[bot]
authored andcommitted
Fix styling
1 parent 0b686e7 commit c184b94

File tree

53 files changed

+120
-120
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

53 files changed

+120
-120
lines changed

app/Console/Kernel.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,9 @@ protected function schedule(Schedule $schedule)
1616
{
1717
$schedule->command('moox:batchjob')->daily();
1818
$schedule->command('moox:demojob')->hourly();
19-
//$schedule->command('moox:failjob')->cron('0 */3 * * *'); // Every 3 minutes
20-
//$schedule->command('moox:longjob')->cron('0 */45 * * *'); // Every 45 minutes
21-
//$schedule->command('moox:timeoutjob')->cron('0 */20 * * *'); // Every 20 minutes
19+
// $schedule->command('moox:failjob')->cron('0 */3 * * *'); // Every 3 minutes
20+
// $schedule->command('moox:longjob')->cron('0 */45 * * *'); // Every 45 minutes
21+
// $schedule->command('moox:timeoutjob')->cron('0 */20 * * *'); // Every 20 minutes
2222
}
2323

2424
/**

app/Models/User.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ class User extends Authenticatable implements FilamentUser
4747
public function canAccessPanel(Panel $panel): bool
4848
{
4949
// TODO: Implement roles and permissions.
50-
//return $this->hasAnyRole(['super_admin', 'filament_user']);
50+
// return $this->hasAnyRole(['super_admin', 'filament_user']);
5151
return true;
5252
}
5353
}

app/Providers/Filament/AdminPanelProvider.php

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ public function panel(Panel $panel): Panel
3232
->passwordReset(RequestPasswordReset::class)
3333
->login(Login::class)
3434
// TODO: check this
35-
//->authGuard('admin')
35+
// ->authGuard('admin')
3636
->brandLogo(asset('img/logo.png'))
3737
->brandLogoHeight('1.6rem')
3838
->colors([
@@ -70,9 +70,9 @@ public function panel(Panel $panel): Panel
7070
GravatarPlugin::make(),
7171
\Moox\Audit\AuditPlugin::make(),
7272
\Moox\Locate\AreaPlugin::make(),
73-
//\Moox\Locate\CountryPlugin::make(),
74-
//\Moox\Locate\LanguagePlugin::make(),
75-
//\Moox\Locate\TimezonePlugin::make(),
73+
// \Moox\Locate\CountryPlugin::make(),
74+
// \Moox\Locate\LanguagePlugin::make(),
75+
// \Moox\Locate\TimezonePlugin::make(),
7676

7777
// Builder plugin
7878
\Moox\Builder\SimpleTaxonomyPlugin::make(),
@@ -99,8 +99,8 @@ public function panel(Panel $panel): Panel
9999
\Moox\Jobs\JobsBatchesPlugin::make(),
100100

101101
// Sync Plugins
102-
//\Moox\Sync\SyncPlugin::make(),
103-
//\Moox\Sync\PlatformPlugin::make(),
102+
// \Moox\Sync\SyncPlugin::make(),
103+
// \Moox\Sync\PlatformPlugin::make(),
104104

105105
// User plugins
106106
\Moox\User\UserPlugin::make(),

app/Providers/Filament/PressPanelProvider.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -89,8 +89,8 @@ public function panel(Panel $panel): Panel
8989
\Moox\Jobs\JobsBatchesPlugin::make(),
9090

9191
// Sync Plugins
92-
//\Moox\Sync\SyncPlugin::make(),
93-
//\Moox\Sync\PlatformPlugin::make(),
92+
// \Moox\Sync\SyncPlugin::make(),
93+
// \Moox\Sync\PlatformPlugin::make(),
9494

9595
// User plugins
9696
\Moox\Press\WpUserPlugin::make(),

config/permission.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -75,8 +75,8 @@
7575
/*
7676
* Change this if you want to name the related pivots other than defaults
7777
*/
78-
'role_pivot_key' => null, //default 'role_id',
79-
'permission_pivot_key' => null, //default 'permission_id',
78+
'role_pivot_key' => null, // default 'role_id',
79+
'permission_pivot_key' => null, // default 'permission_id',
8080

8181
/*
8282
* Change this if you want to name the related model primary key other than

config/press.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1148,7 +1148,7 @@
11481148
'user_registered' => now()->toDateTimeString(),
11491149
'user_status' => '0',
11501150
// TODO: suppress errors for first and last name
1151-
//'display_name' => $first_name.' '.$last_name ?? $user_login ?? '',
1151+
// 'display_name' => $first_name.' '.$last_name ?? $user_login ?? '',
11521152
],
11531153

11541154
/*

database/migrations/2024_10_18_223207_create_taggables_table.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ public function up(): void
1313
{
1414
Schema::create('taggables', function (Blueprint $table) {
1515
$table->id();
16-
$table->foreignId('tag_id')->constrained()->onDelete('cascade'); //????????
16+
$table->foreignId('tag_id')->constrained()->onDelete('cascade'); // ????????
1717
$table->morphs('taggable');
1818
$table->timestamps();
1919
});

packages/audit/src/Commands/InstallCommand.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -162,12 +162,12 @@ public function registerPluginInPanelProvider(): void
162162
$panelsToregister = $this->getPanelProviderPath();
163163
if ($panelsToregister != null) {
164164
if (is_array($panelsToregister)) {
165-
//Multiselect
165+
// Multiselect
166166
foreach ($panelsToregister as $panelprovider) {
167167
$this->registerPlugins($providerPath.'/'.$panelprovider);
168168
}
169169
} else {
170-
//only one
170+
// only one
171171
$this->registerPlugins($panelsToregister);
172172
}
173173
} else {

packages/builder/src/Commands/InstallCommand.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -173,12 +173,12 @@ public function registerPluginInPanelProvider(): void
173173
$panelsToregister = $this->getPanelProviderPath();
174174
if ($panelsToregister != null) {
175175
if (is_array($panelsToregister)) {
176-
//Multiselect
176+
// Multiselect
177177
foreach ($panelsToregister as $panelprovider) {
178178
$this->registerPlugins($providerPath.'/'.$panelprovider);
179179
}
180180
} else {
181-
//only one
181+
// only one
182182
$this->registerPlugins($panelsToregister);
183183
}
184184
} else {

packages/builder/src/Providers/BuilderPanelProvider.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ public function panel(Panel $panel): Panel
3232
])
3333
->discoverResources(in: app_path('Builder/Resources'), for: 'App\\Builder\\Resources')
3434
->plugins([
35-
//ExpiryPlugin::make(),
35+
// ExpiryPlugin::make(),
3636
])
3737
->pages([
3838
BuilderDashboard::class,

0 commit comments

Comments
 (0)