-
Notifications
You must be signed in to change notification settings - Fork 387
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into laravel-10-migrations
- Loading branch information
Showing
240 changed files
with
1,847 additions
and
1,671 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
<?php | ||
|
||
/* | ||
/** | ||
* This file is part of OAuth 2.0 Laravel. | ||
* | ||
* (c) Luca Degasperi <[email protected]> | ||
|
@@ -18,7 +18,7 @@ | |
* | ||
* @author Luca Degasperi <[email protected]> | ||
*/ | ||
class CreateOauthScopesTable extends Migration | ||
return new class extends Migration | ||
{ | ||
/** | ||
* Run the migrations. | ||
|
@@ -44,4 +44,4 @@ public function down() | |
{ | ||
Schema::drop('oauth_scopes'); | ||
} | ||
} | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
<?php | ||
|
||
/* | ||
/** | ||
* This file is part of OAuth 2.0 Laravel. | ||
* | ||
* (c) Luca Degasperi <[email protected]> | ||
|
@@ -18,7 +18,7 @@ | |
* | ||
* @author Luca Degasperi <[email protected]> | ||
*/ | ||
class CreateOauthGrantsTable extends Migration | ||
return new class extends Migration | ||
{ | ||
/** | ||
* Run the migrations. | ||
|
@@ -42,4 +42,4 @@ public function down() | |
{ | ||
Schema::drop('oauth_grants'); | ||
} | ||
} | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
<?php | ||
|
||
/* | ||
/** | ||
* This file is part of OAuth 2.0 Laravel. | ||
* | ||
* (c) Luca Degasperi <[email protected]> | ||
|
@@ -18,7 +18,7 @@ | |
* | ||
* @author Luca Degasperi <[email protected]> | ||
*/ | ||
class CreateOauthGrantScopesTable extends Migration | ||
return new class extends Migration | ||
{ | ||
/** | ||
* Run the migrations. | ||
|
@@ -60,4 +60,4 @@ public function down() | |
}); | ||
Schema::drop('oauth_grant_scopes'); | ||
} | ||
} | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
<?php | ||
|
||
/* | ||
/** | ||
* This file is part of OAuth 2.0 Laravel. | ||
* | ||
* (c) Luca Degasperi <[email protected]> | ||
|
@@ -18,7 +18,7 @@ | |
* | ||
* @author Luca Degasperi <[email protected]> | ||
*/ | ||
class CreateOauthClientsTable extends Migration | ||
return new class extends Migration | ||
{ | ||
/** | ||
* Run the migrations. | ||
|
@@ -46,4 +46,4 @@ public function down() | |
{ | ||
Schema::drop('oauth_clients'); | ||
} | ||
} | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
<?php | ||
|
||
/* | ||
/** | ||
* This file is part of OAuth 2.0 Laravel. | ||
* | ||
* (c) Luca Degasperi <[email protected]> | ||
|
@@ -18,7 +18,7 @@ | |
* | ||
* @author Luca Degasperi <[email protected]> | ||
*/ | ||
class CreateOauthClientEndpointsTable extends Migration | ||
return new class extends Migration | ||
{ | ||
/** | ||
* Run the migrations. | ||
|
@@ -56,4 +56,4 @@ public function down() | |
|
||
Schema::drop('oauth_client_endpoints'); | ||
} | ||
} | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
<?php | ||
|
||
/* | ||
/** | ||
* This file is part of OAuth 2.0 Laravel. | ||
* | ||
* (c) Luca Degasperi <[email protected]> | ||
|
@@ -18,7 +18,7 @@ | |
* | ||
* @author Luca Degasperi <[email protected]> | ||
*/ | ||
class CreateOauthClientScopesTable extends Migration | ||
return new class extends Migration | ||
{ | ||
/** | ||
* Run the migrations. | ||
|
@@ -60,4 +60,4 @@ public function down() | |
}); | ||
Schema::drop('oauth_client_scopes'); | ||
} | ||
} | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
<?php | ||
|
||
/* | ||
/** | ||
* This file is part of OAuth 2.0 Laravel. | ||
* | ||
* (c) Luca Degasperi <[email protected]> | ||
|
@@ -18,7 +18,7 @@ | |
* | ||
* @author Luca Degasperi <[email protected]> | ||
*/ | ||
class CreateOauthClientGrantsTable extends Migration | ||
return new class extends Migration | ||
{ | ||
/** | ||
* Run the migrations. | ||
|
@@ -61,4 +61,4 @@ public function down() | |
}); | ||
Schema::drop('oauth_client_grants'); | ||
} | ||
} | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
<?php | ||
|
||
/* | ||
/** | ||
* This file is part of OAuth 2.0 Laravel. | ||
* | ||
* (c) Luca Degasperi <[email protected]> | ||
|
@@ -18,7 +18,7 @@ | |
* | ||
* @author Luca Degasperi <[email protected]> | ||
*/ | ||
class CreateOauthSessionsTable extends Migration | ||
return new class extends Migration | ||
{ | ||
/** | ||
* Run the migrations. | ||
|
@@ -56,4 +56,4 @@ public function down() | |
}); | ||
Schema::drop('oauth_sessions'); | ||
} | ||
} | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
<?php | ||
|
||
/* | ||
/** | ||
* This file is part of OAuth 2.0 Laravel. | ||
* | ||
* (c) Luca Degasperi <[email protected]> | ||
|
@@ -18,7 +18,7 @@ | |
* | ||
* @author Luca Degasperi <[email protected]> | ||
*/ | ||
class CreateOauthSessionScopesTable extends Migration | ||
return new class extends Migration | ||
{ | ||
/** | ||
* Run the migrations. | ||
|
@@ -60,4 +60,4 @@ public function down() | |
}); | ||
Schema::drop('oauth_session_scopes'); | ||
} | ||
} | ||
}; |
Oops, something went wrong.