![]() 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/ |
<?php namespace Laminas\Db\TableGateway; use Closure; use Laminas\Db\ResultSet\ResultSetInterface; use Laminas\Db\Sql\Where; interface TableGatewayInterface { /** @return string */ public function getTable(); /** * @param Where|Closure|string|array $where * @return ResultSetInterface */ public function select($where = null); /** * @param array<string, mixed> $set * @return int */ public function insert($set); /** * @param array<string, mixed> $set * @param Where|Closure|string|array $where * @return int */ public function update($set, $where = null); /** * @param Where|Closure|string|array $where * @return int */ public function delete($where); }