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 BitcoinEventObserver
/**
* Handle the BitcoinEvent "created" event.
*
* @param \App\Models\BitcoinEvent $bitcoinEvent
* @return void
*/
public function created(BitcoinEvent $bitcoinEvent): void
{
@@ -34,9 +31,6 @@ class BitcoinEventObserver
/**
* Handle the BitcoinEvent "updated" event.
*
* @param \App\Models\BitcoinEvent $bitcoinEvent
* @return void
*/
public function updated(BitcoinEvent $bitcoinEvent): void
{
@@ -45,9 +39,6 @@ class BitcoinEventObserver
/**
* Handle the BitcoinEvent "deleted" event.
*
* @param \App\Models\BitcoinEvent $bitcoinEvent
* @return void
*/
public function deleted(BitcoinEvent $bitcoinEvent): void
{
@@ -56,9 +47,6 @@ class BitcoinEventObserver
/**
* Handle the BitcoinEvent "restored" event.
*
* @param \App\Models\BitcoinEvent $bitcoinEvent
* @return void
*/
public function restored(BitcoinEvent $bitcoinEvent): void
{
@@ -67,9 +55,6 @@ class BitcoinEventObserver
/**
* Handle the BitcoinEvent "force deleted" event.
*
* @param \App\Models\BitcoinEvent $bitcoinEvent
* @return void
*/
public function forceDeleted(BitcoinEvent $bitcoinEvent): void
{