Bluz\Tests\Fixtures\Models\Test\Crud::getTable PHP Method

getTable() public method

Return table instance for manipulation
public getTable ( ) : Table
return Table
    public function getTable()
    {
        if (!$this->table) {
            /**
             * @var Table $tableClass
             */
            $table = Table::getInstance();
            $this->setTable($table);
        }
        return $this->table;
    }