. * * @package LibreNMS * @link http://librenms.org * @copyright 2019 Tony Murray * @author Tony Murray */ namespace App\Console; use Illuminate\Foundation\Console\ModelMakeCommand as LaravelModelMakeCommand; class ModelMakeCommand extends LaravelModelMakeCommand { /** * Get the default namespace for the class. * * @param string $rootNamespace * @return string */ protected function getDefaultNamespace($rootNamespace) { return $rootNamespace.'\Models'; } }