for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* Spiral Framework.
*
* @license MIT
* @author Anton Titov (Wolfy-J)
*/
namespace Spiral\Migrations\Operations;
abstract class ReferenceOperation extends TableOperation
{
* Column foreign key associated to.
* @var string
protected $column = '';
* @param string|null $database
* @param string $table
* @param string $column
public function __construct($database, string $table, string $column)
parent::__construct($database, $table);
$this->column = $column;
}