mirror of
https://github.com/Einundzwanzig-Podcast/einundzwanzig-portal.git
synced 2025-12-15 07:06:47 +00:00
18 lines
347 B
PHP
18 lines
347 B
PHP
<?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;
|
|
}
|
|
}
|