Files
newznab-tmux-NNTmux/app/Console/Commands/VerifyNNTmuxSettings.php
T
DariusIII 24fa162413 Apply fixes from StyleCI
[ci skip] [skip ci]
2017-08-31 09:31:28 +00:00

43 lines
749 B
PHP

<?php
namespace App\Console\Commands;
use App\Models\Settings;
use Illuminate\Console\Command;
class VerifyNNTmuxSettings extends Command
{
/**
* The name and signature of the console command.
*
* @var string
*/
protected $signature = 'nntmux:settings';
/**
* The console command description.
*
* @var string
*/
protected $description = 'Verify settings table data';
/**
* Create a new command instance.
*/
public function __construct()
{
parent::__construct();
}
/**
* Execute the console command.
*
* @return mixed
* @throws \Exception
*/
public function handle()
{
Settings::hasAllEntries($this);
}
}