Remove redundant typing from DocBlocks

This commit is contained in:
Shift
2023-02-19 16:19:48 +00:00
committed by HolgerHatGarKeineNode
parent 98a430c91c
commit f1905d548d
207 changed files with 1 additions and 1262 deletions

View File

@@ -14,8 +14,6 @@ class AppServiceProvider extends ServiceProvider
{
/**
* Register any application services.
*
* @return void
*/
public function register(): void
{
@@ -26,8 +24,6 @@ class AppServiceProvider extends ServiceProvider
/**
* Bootstrap any application services.
*
* @return void
*/
public function boot(): void
{

View File

@@ -25,8 +25,6 @@ class AuthServiceProvider extends ServiceProvider
/**
* Register any authentication / authorization services.
*
* @return void
*/
public function boot(): void
{

View File

@@ -40,8 +40,6 @@ class EventServiceProvider extends ServiceProvider
/**
* Register any events for your application.
*
* @return void
*/
public function boot(): void
{
@@ -56,8 +54,6 @@ class EventServiceProvider extends ServiceProvider
/**
* Determine if events and listeners should be automatically discovered.
*
* @return bool
*/
public function shouldDiscoverEvents(): bool
{

View File

@@ -16,8 +16,6 @@ class FortifyServiceProvider extends ServiceProvider
{
/**
* Register any application services.
*
* @return void
*/
public function register(): void
{
@@ -26,8 +24,6 @@ class FortifyServiceProvider extends ServiceProvider
/**
* Bootstrap any application services.
*
* @return void
*/
public function boot(): void
{

View File

@@ -20,8 +20,6 @@ class JetstreamServiceProvider extends ServiceProvider
{
/**
* Register any application services.
*
* @return void
*/
public function register(): void
{
@@ -30,8 +28,6 @@ class JetstreamServiceProvider extends ServiceProvider
/**
* Bootstrap any application services.
*
* @return void
*/
public function boot(): void
{
@@ -59,8 +55,6 @@ class JetstreamServiceProvider extends ServiceProvider
/**
* Configure the roles and permissions that are available within the application.
*
* @return void
*/
protected function configurePermissions(): void
{

View File

@@ -36,8 +36,6 @@ class NovaServiceProvider extends NovaApplicationServiceProvider
{
/**
* Bootstrap any application services.
*
* @return void
*/
public function boot(): void
{
@@ -169,8 +167,6 @@ class NovaServiceProvider extends NovaApplicationServiceProvider
/**
* Get the tools that should be listed in the Nova sidebar.
*
* @return array
*/
public function tools(): array
{
@@ -181,8 +177,6 @@ class NovaServiceProvider extends NovaApplicationServiceProvider
/**
* Register the Nova routes.
*
* @return void
*/
protected function routes(): void
{
@@ -194,8 +188,6 @@ class NovaServiceProvider extends NovaApplicationServiceProvider
/**
* Register any application services.
*
* @return void
*/
public function register(): void
{
@@ -205,8 +197,6 @@ class NovaServiceProvider extends NovaApplicationServiceProvider
/**
* Register the Nova gate.
* This gate determines who can access Nova in non-local environments.
*
* @return void
*/
protected function gate(): void
{
@@ -217,8 +207,6 @@ class NovaServiceProvider extends NovaApplicationServiceProvider
/**
* Get the dashboards that should be listed in the Nova sidebar.
*
* @return array
*/
protected function dashboards(): array
{

View File

@@ -20,8 +20,6 @@ class RouteServiceProvider extends ServiceProvider
/**
* Define your route model bindings, pattern filters, and other route configuration.
*
* @return void
*/
public function boot(): void
{
@@ -39,8 +37,6 @@ class RouteServiceProvider extends ServiceProvider
/**
* Configure the rate limiters for the application.
*
* @return void
*/
protected function configureRateLimiting(): void
{