![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/old/vendor/laminas/laminas-db/src/TableGateway/Feature/ |
<?php namespace Laminas\Db\TableGateway\Feature; use Laminas\Db\TableGateway\AbstractTableGateway; use Laminas\Db\TableGateway\Exception; abstract class AbstractFeature extends AbstractTableGateway { /** @var AbstractTableGateway */ protected $tableGateway; /** @var array */ protected $sharedData = []; /** @return string */ public function getName() { return static::class; } public function setTableGateway(AbstractTableGateway $tableGateway) { $this->tableGateway = $tableGateway; } public function initialize() { throw new Exception\RuntimeException('This method is not intended to be called on this object.'); } /** @return string[] */ public function getMagicMethodSpecifications() { return []; } /* public function preInitialize(); public function postInitialize(); public function preSelect(Select $select); public function postSelect(StatementInterface $statement, ResultInterface $result, ResultSetInterface $resultSet); public function preInsert(Insert $insert); public function postInsert(StatementInterface $statement, ResultInterface $result); public function preUpdate(Update $update); public function postUpdate(StatementInterface $statement, ResultInterface $result); public function preDelete(Delete $delete); public function postDelete(StatementInterface $statement, ResultInterface $result); */ }