Added vendor/ directory for Composer's installed files
This commit is contained in:
22
vendor/illuminate/database/Migrations/Migration.php
vendored
Executable file
22
vendor/illuminate/database/Migrations/Migration.php
vendored
Executable file
@ -0,0 +1,22 @@
|
||||
<?php namespace Illuminate\Database\Migrations;
|
||||
|
||||
abstract class Migration {
|
||||
|
||||
/**
|
||||
* The name of the database connection to use.
|
||||
*
|
||||
* @var string
|
||||
*/
|
||||
protected $connection;
|
||||
|
||||
/**
|
||||
* Get the migration connection name.
|
||||
*
|
||||
* @return string
|
||||
*/
|
||||
public function getConnection()
|
||||
{
|
||||
return $this->connection;
|
||||
}
|
||||
|
||||
}
|
Reference in New Issue
Block a user