mirror of
https://github.com/Einundzwanzig-Podcast/einundzwanzig-portal.git
synced 2026-01-26 10:23:17 +00:00
Add PHP type hints for Laravel 10
This commit is contained in:
committed by
HolgerHatGarKeineNode
parent
ad55c69b51
commit
98a430c91c
@@ -15,7 +15,7 @@ class BitcoinEventObserver
|
||||
* @param \App\Models\BitcoinEvent $bitcoinEvent
|
||||
* @return void
|
||||
*/
|
||||
public function created(BitcoinEvent $bitcoinEvent)
|
||||
public function created(BitcoinEvent $bitcoinEvent): void
|
||||
{
|
||||
if (config('feeds.services.twitterAccountId')) {
|
||||
$this->setNewAccessToken(1);
|
||||
@@ -38,7 +38,7 @@ class BitcoinEventObserver
|
||||
* @param \App\Models\BitcoinEvent $bitcoinEvent
|
||||
* @return void
|
||||
*/
|
||||
public function updated(BitcoinEvent $bitcoinEvent)
|
||||
public function updated(BitcoinEvent $bitcoinEvent): void
|
||||
{
|
||||
//
|
||||
}
|
||||
@@ -49,7 +49,7 @@ class BitcoinEventObserver
|
||||
* @param \App\Models\BitcoinEvent $bitcoinEvent
|
||||
* @return void
|
||||
*/
|
||||
public function deleted(BitcoinEvent $bitcoinEvent)
|
||||
public function deleted(BitcoinEvent $bitcoinEvent): void
|
||||
{
|
||||
//
|
||||
}
|
||||
@@ -60,7 +60,7 @@ class BitcoinEventObserver
|
||||
* @param \App\Models\BitcoinEvent $bitcoinEvent
|
||||
* @return void
|
||||
*/
|
||||
public function restored(BitcoinEvent $bitcoinEvent)
|
||||
public function restored(BitcoinEvent $bitcoinEvent): void
|
||||
{
|
||||
//
|
||||
}
|
||||
@@ -71,7 +71,7 @@ class BitcoinEventObserver
|
||||
* @param \App\Models\BitcoinEvent $bitcoinEvent
|
||||
* @return void
|
||||
*/
|
||||
public function forceDeleted(BitcoinEvent $bitcoinEvent)
|
||||
public function forceDeleted(BitcoinEvent $bitcoinEvent): void
|
||||
{
|
||||
//
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user