<?php
namespace IlluminateDatabaseConsoleMigrations;
use IlluminateConsoleCommand;
class BaseCommand extends Command
{
/**
* Get the path to the migration directory.
*
* @return string
*/
protected function getMigrationPath()
{
return $this->laravel->databasePath().'/migrations';
}
}