Added vendor/ directory for Composer's installed files
This commit is contained in:
17
vendor/illuminate/database/Console/Migrations/BaseCommand.php
vendored
Executable file
17
vendor/illuminate/database/Console/Migrations/BaseCommand.php
vendored
Executable file
@ -0,0 +1,17 @@
|
||||
<?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';
|
||||
}
|
||||
|
||||
}
|
Reference in New Issue
Block a user