website/vendor/illuminate/database/Console/Migrations/BaseCommand.php

18 lines
308 B
PHP
Raw Normal View History

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