mirror of
https://github.com/Einundzwanzig-Podcast/einundzwanzig-portal.git
synced 2026-03-29 14:48:41 +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;
|
|
}
|
|
}
|