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)
*/
declare(strict_types=1);
namespace Cycle\Migrations\Operation;
use Cycle\Migrations\OperationInterface;
abstract class AbstractOperation implements OperationInterface
{
/** @var string */
protected $table;
* @param string $table
public function __construct(string $table)
$this->table = $table;
}
* {@inheritdoc}
public function getTable(): string
return $this->table;