Skip to content

Commit eb6b56f

Browse files
committed
2 parents 1df39ab + c30b0e5 commit eb6b56f

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

config/laravel-media-secure.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
* Middleware want to apply to the media route.
2525
*/
2626
'middleware' => [
27-
'auth:sanctum', //'verified',
27+
'auth:sanctum', // 'verified',
2828
],
2929

3030
/**

config/media-library.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@
108108
'-m 6', // for the slowest compression method in order to get the best compression.
109109
'-pass 10', // for maximizing the amount of analysis pass.
110110
'-mt', // multithreading for some speed improvements.
111-
'-q 90', //quality factor that brings the least noticeable changes.
111+
'-q 90', // quality factor that brings the least noticeable changes.
112112
],
113113
],
114114

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

database/migrations/2022_03_24_173335_create_permission_tables.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ public function up(): void
2525
}
2626

2727
Schema::create($tableNames['permissions'], function (Blueprint $table) {
28-
//$table->engine('InnoDB');
28+
// $table->engine('InnoDB');
2929
$table->bigIncrements('id'); // permission id
3030
$table->uuid();
3131
$table->string('name'); // For MyISAM use string('name', 225); // (or 166 for InnoDB with Redundant/Compact row format)
@@ -39,7 +39,7 @@ public function up(): void
3939
});
4040

4141
Schema::create($tableNames['roles'], function (Blueprint $table) use ($teams, $columnNames) {
42-
//$table->engine('InnoDB');
42+
// $table->engine('InnoDB');
4343
$table->bigIncrements('id'); // role id
4444
$table->uuid();
4545
if ($teams || config('permission.testing')) { // permission.testing is a fix for sqlite testing

0 commit comments

Comments
 (0)