mirror of
https://github.com/Einundzwanzig-Podcast/einundzwanzig-portal.git
synced 2025-12-17 07:14:23 +00:00
huge Laravel 10 upgrade
This commit is contained in:
@@ -0,0 +1,17 @@
|
||||
<?php
|
||||
|
||||
namespace JoeDixon\Translation\Console\Commands;
|
||||
|
||||
use Illuminate\Console\Command;
|
||||
use JoeDixon\Translation\Drivers\Translation;
|
||||
|
||||
class BaseCommand extends Command
|
||||
{
|
||||
protected $translation;
|
||||
|
||||
public function __construct(Translation $translation)
|
||||
{
|
||||
parent::__construct();
|
||||
$this->translation = $translation;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user