D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
usr
/
local
/
psa
/
admin
/
plib
/
modules
/
wp-toolkit
/
vendor
/
robmorgan
/
phinx
/
src
/
Phinx
/
Db
/
Action
/
Filename :
Action.php
back
Copy
<?php /** * MIT License * For full license information, please view the LICENSE file that was distributed with this source code. */ namespace WPToolkitDependenciesIsolationPrefix\Phinx\Db\Action; use WPToolkitDependenciesIsolationPrefix\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; } }