39 lines
686 B
PHP
39 lines
686 B
PHP
<?php
|
|
|
|
/**
|
|
* MIT License
|
|
* For full license information, please view the LICENSE file that was distributed with this source code.
|
|
*/
|
|
|
|
namespace Phinx\Db\Action;
|
|
|
|
use Phinx\Db\Table\Table;
|
|
|
|
abstract class Action
|
|
{
|
|
/**
|
|
* @var \Phinx\Db\Table\Table
|
|
*/
|
|
protected $table;
|
|
|
|
/**
|
|
* Constructor
|
|
*
|
|
* @param \Phinx\Db\Table\Table $table the Table to apply the action to
|
|
*/
|
|
public function __construct(Table $table)
|
|
{
|
|
$this->table = $table;
|
|
}
|
|
|
|
/**
|
|
* The table this action will be applied to
|
|
*
|
|
* @return \Phinx\Db\Table\Table
|
|
*/
|
|
public function getTable(): Table
|
|
{
|
|
return $this->table;
|
|
}
|
|
}
|