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

@@ -11,9 +11,6 @@ class OrangePillObserver
/**
* Handle the OrangePill "created" event.
*
* @param \App\Models\OrangePill $orangePill
* @return void
*/
public function created(OrangePill $orangePill): void
{
@@ -32,9 +29,6 @@ class OrangePillObserver
/**
* Handle the OrangePill "updated" event.
*
* @param \App\Models\OrangePill $orangePill
* @return void
*/
public function updated(OrangePill $orangePill): void
{
@@ -43,9 +37,6 @@ class OrangePillObserver
/**
* Handle the OrangePill "deleted" event.
*
* @param \App\Models\OrangePill $orangePill
* @return void
*/
public function deleted(OrangePill $orangePill): void
{
@@ -54,9 +45,6 @@ class OrangePillObserver
/**
* Handle the OrangePill "restored" event.
*
* @param \App\Models\OrangePill $orangePill
* @return void
*/
public function restored(OrangePill $orangePill): void
{
@@ -65,9 +53,6 @@ class OrangePillObserver
/**
* Handle the OrangePill "force deleted" event.
*
* @param \App\Models\OrangePill $orangePill
* @return void
*/
public function forceDeleted(OrangePill $orangePill): void
{