repo
stringlengths
7
63
file_url
stringlengths
81
284
file_path
stringlengths
5
200
content
stringlengths
0
32.8k
language
stringclasses
1 value
license
stringclasses
7 values
commit_sha
stringlengths
40
40
retrieved_at
stringdate
2026-01-04 15:02:33
2026-01-05 05:24:06
truncated
bool
2 classes
laminas/laminas-db
https://github.com/laminas/laminas-db/blob/1395efe76f7a20c322e78d1885efe103e5e291ff/src/ResultSet/Exception/RuntimeException.php
src/ResultSet/Exception/RuntimeException.php
<?php namespace Laminas\Db\ResultSet\Exception; use Laminas\Db\Exception; class RuntimeException extends Exception\RuntimeException implements ExceptionInterface { }
php
BSD-3-Clause
1395efe76f7a20c322e78d1885efe103e5e291ff
2026-01-05T05:03:07.882669Z
false
laminas/laminas-db
https://github.com/laminas/laminas-db/blob/1395efe76f7a20c322e78d1885efe103e5e291ff/src/ResultSet/Exception/InvalidArgumentException.php
src/ResultSet/Exception/InvalidArgumentException.php
<?php namespace Laminas\Db\ResultSet\Exception; use Laminas\Db\Exception; class InvalidArgumentException extends Exception\InvalidArgumentException implements ExceptionInterface { }
php
BSD-3-Clause
1395efe76f7a20c322e78d1885efe103e5e291ff
2026-01-05T05:03:07.882669Z
false
laminas/laminas-db
https://github.com/laminas/laminas-db/blob/1395efe76f7a20c322e78d1885efe103e5e291ff/src/TableGateway/AbstractTableGateway.php
src/TableGateway/AbstractTableGateway.php
<?php namespace Laminas\Db\TableGateway; use Closure; use Laminas\Db\Adapter\AdapterInterface; use Laminas\Db\ResultSet\ResultSet; use Laminas\Db\ResultSet\ResultSetInterface; use Laminas\Db\Sql\Delete; use Laminas\Db\Sql\Insert; use Laminas\Db\Sql\Join; use Laminas\Db\Sql\Select; use Laminas\Db\Sql\Sql; use Laminas\...
php
BSD-3-Clause
1395efe76f7a20c322e78d1885efe103e5e291ff
2026-01-05T05:03:07.882669Z
false
laminas/laminas-db
https://github.com/laminas/laminas-db/blob/1395efe76f7a20c322e78d1885efe103e5e291ff/src/TableGateway/TableGateway.php
src/TableGateway/TableGateway.php
<?php namespace Laminas\Db\TableGateway; use Laminas\Db\Adapter\AdapterInterface; use Laminas\Db\ResultSet\ResultSet; use Laminas\Db\ResultSet\ResultSetInterface; use Laminas\Db\Sql\Sql; use Laminas\Db\Sql\TableIdentifier; use function is_array; use function is_string; class TableGateway extends AbstractTableGatewa...
php
BSD-3-Clause
1395efe76f7a20c322e78d1885efe103e5e291ff
2026-01-05T05:03:07.882669Z
false
laminas/laminas-db
https://github.com/laminas/laminas-db/blob/1395efe76f7a20c322e78d1885efe103e5e291ff/src/TableGateway/TableGatewayInterface.php
src/TableGateway/TableGatewayInterface.php
<?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 */ ...
php
BSD-3-Clause
1395efe76f7a20c322e78d1885efe103e5e291ff
2026-01-05T05:03:07.882669Z
false
laminas/laminas-db
https://github.com/laminas/laminas-db/blob/1395efe76f7a20c322e78d1885efe103e5e291ff/src/TableGateway/Feature/EventFeatureEventsInterface.php
src/TableGateway/Feature/EventFeatureEventsInterface.php
<?php namespace Laminas\Db\TableGateway\Feature; /** * EventFeature event constants. * * This moves the constants introduced in {@link https://github.com/zendframework/zf2/pull/7066} * into a separate interface that EventFeature implements; the change keeps * backwards compatibility, while simultaneously removin...
php
BSD-3-Clause
1395efe76f7a20c322e78d1885efe103e5e291ff
2026-01-05T05:03:07.882669Z
false
laminas/laminas-db
https://github.com/laminas/laminas-db/blob/1395efe76f7a20c322e78d1885efe103e5e291ff/src/TableGateway/Feature/EventFeature.php
src/TableGateway/Feature/EventFeature.php
<?php namespace Laminas\Db\TableGateway\Feature; use Laminas\Db\Adapter\Driver\ResultInterface; use Laminas\Db\Adapter\Driver\StatementInterface; use Laminas\Db\ResultSet\ResultSetInterface; use Laminas\Db\Sql\Delete; use Laminas\Db\Sql\Insert; use Laminas\Db\Sql\Select; use Laminas\Db\Sql\Update; use Laminas\Db\Tabl...
php
BSD-3-Clause
1395efe76f7a20c322e78d1885efe103e5e291ff
2026-01-05T05:03:07.882669Z
false
laminas/laminas-db
https://github.com/laminas/laminas-db/blob/1395efe76f7a20c322e78d1885efe103e5e291ff/src/TableGateway/Feature/GlobalAdapterFeature.php
src/TableGateway/Feature/GlobalAdapterFeature.php
<?php namespace Laminas\Db\TableGateway\Feature; use Laminas\Db\Adapter\Adapter; use Laminas\Db\TableGateway\Exception; class GlobalAdapterFeature extends AbstractFeature { /** @var Adapter[] */ protected static $staticAdapters = []; /** * Set static adapter */ public static function setSt...
php
BSD-3-Clause
1395efe76f7a20c322e78d1885efe103e5e291ff
2026-01-05T05:03:07.882669Z
false
laminas/laminas-db
https://github.com/laminas/laminas-db/blob/1395efe76f7a20c322e78d1885efe103e5e291ff/src/TableGateway/Feature/AbstractFeature.php
src/TableGateway/Feature/AbstractFeature.php
<?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 = ...
php
BSD-3-Clause
1395efe76f7a20c322e78d1885efe103e5e291ff
2026-01-05T05:03:07.882669Z
false
laminas/laminas-db
https://github.com/laminas/laminas-db/blob/1395efe76f7a20c322e78d1885efe103e5e291ff/src/TableGateway/Feature/RowGatewayFeature.php
src/TableGateway/Feature/RowGatewayFeature.php
<?php namespace Laminas\Db\TableGateway\Feature; use Laminas\Db\ResultSet\ResultSet; use Laminas\Db\RowGateway\RowGateway; use Laminas\Db\RowGateway\RowGatewayInterface; use Laminas\Db\TableGateway\Exception; use Laminas\Db\TableGateway\Feature\MetadataFeature; use function func_get_args; use function is_string; cl...
php
BSD-3-Clause
1395efe76f7a20c322e78d1885efe103e5e291ff
2026-01-05T05:03:07.882669Z
false
laminas/laminas-db
https://github.com/laminas/laminas-db/blob/1395efe76f7a20c322e78d1885efe103e5e291ff/src/TableGateway/Feature/SequenceFeature.php
src/TableGateway/Feature/SequenceFeature.php
<?php namespace Laminas\Db\TableGateway\Feature; use Laminas\Db\Adapter\Driver\ResultInterface; use Laminas\Db\Adapter\Driver\StatementInterface; use Laminas\Db\Sql\Insert; use function array_search; class SequenceFeature extends AbstractFeature { /** @var string */ protected $primaryKeyField; /** @var...
php
BSD-3-Clause
1395efe76f7a20c322e78d1885efe103e5e291ff
2026-01-05T05:03:07.882669Z
false
laminas/laminas-db
https://github.com/laminas/laminas-db/blob/1395efe76f7a20c322e78d1885efe103e5e291ff/src/TableGateway/Feature/FeatureSet.php
src/TableGateway/Feature/FeatureSet.php
<?php namespace Laminas\Db\TableGateway\Feature; use Laminas\Db\TableGateway\AbstractTableGateway; use Laminas\Db\TableGateway\TableGatewayInterface; use function call_user_func_array; use function method_exists; class FeatureSet { public const APPLY_HALT = 'halt'; /** @var null|AbstractTableGateway */ ...
php
BSD-3-Clause
1395efe76f7a20c322e78d1885efe103e5e291ff
2026-01-05T05:03:07.882669Z
false
laminas/laminas-db
https://github.com/laminas/laminas-db/blob/1395efe76f7a20c322e78d1885efe103e5e291ff/src/TableGateway/Feature/MasterSlaveFeature.php
src/TableGateway/Feature/MasterSlaveFeature.php
<?php namespace Laminas\Db\TableGateway\Feature; use Laminas\Db\Adapter\AdapterInterface; use Laminas\Db\Sql\Sql; class MasterSlaveFeature extends AbstractFeature { /** @var AdapterInterface */ protected $slaveAdapter; /** @var Sql */ protected $masterSql; /** @var Sql */ protected $slaveSq...
php
BSD-3-Clause
1395efe76f7a20c322e78d1885efe103e5e291ff
2026-01-05T05:03:07.882669Z
false
laminas/laminas-db
https://github.com/laminas/laminas-db/blob/1395efe76f7a20c322e78d1885efe103e5e291ff/src/TableGateway/Feature/MetadataFeature.php
src/TableGateway/Feature/MetadataFeature.php
<?php namespace Laminas\Db\TableGateway\Feature; use Laminas\Db\Metadata\MetadataInterface; use Laminas\Db\Metadata\Object\ConstraintObject; use Laminas\Db\Metadata\Object\TableObject; use Laminas\Db\Metadata\Source\Factory as SourceFactory; use Laminas\Db\Sql\TableIdentifier; use Laminas\Db\TableGateway\Exception; ...
php
BSD-3-Clause
1395efe76f7a20c322e78d1885efe103e5e291ff
2026-01-05T05:03:07.882669Z
false
laminas/laminas-db
https://github.com/laminas/laminas-db/blob/1395efe76f7a20c322e78d1885efe103e5e291ff/src/TableGateway/Feature/EventFeature/TableGatewayEvent.php
src/TableGateway/Feature/EventFeature/TableGatewayEvent.php
<?php namespace Laminas\Db\TableGateway\Feature\EventFeature; use ArrayAccess; use Laminas\Db\TableGateway\AbstractTableGateway; use Laminas\EventManager\EventInterface; class TableGatewayEvent implements EventInterface { /** @var AbstractTableGateway */ protected $target; /** @var null */ protected...
php
BSD-3-Clause
1395efe76f7a20c322e78d1885efe103e5e291ff
2026-01-05T05:03:07.882669Z
false
laminas/laminas-db
https://github.com/laminas/laminas-db/blob/1395efe76f7a20c322e78d1885efe103e5e291ff/src/TableGateway/Exception/ExceptionInterface.php
src/TableGateway/Exception/ExceptionInterface.php
<?php namespace Laminas\Db\TableGateway\Exception; use Laminas\Db\Exception; interface ExceptionInterface extends Exception\ExceptionInterface { }
php
BSD-3-Clause
1395efe76f7a20c322e78d1885efe103e5e291ff
2026-01-05T05:03:07.882669Z
false
laminas/laminas-db
https://github.com/laminas/laminas-db/blob/1395efe76f7a20c322e78d1885efe103e5e291ff/src/TableGateway/Exception/RuntimeException.php
src/TableGateway/Exception/RuntimeException.php
<?php namespace Laminas\Db\TableGateway\Exception; use Laminas\Db\Exception; class RuntimeException extends Exception\InvalidArgumentException implements ExceptionInterface { }
php
BSD-3-Clause
1395efe76f7a20c322e78d1885efe103e5e291ff
2026-01-05T05:03:07.882669Z
false
laminas/laminas-db
https://github.com/laminas/laminas-db/blob/1395efe76f7a20c322e78d1885efe103e5e291ff/src/TableGateway/Exception/InvalidArgumentException.php
src/TableGateway/Exception/InvalidArgumentException.php
<?php namespace Laminas\Db\TableGateway\Exception; use Laminas\Db\Exception; class InvalidArgumentException extends Exception\InvalidArgumentException implements ExceptionInterface { }
php
BSD-3-Clause
1395efe76f7a20c322e78d1885efe103e5e291ff
2026-01-05T05:03:07.882669Z
false
laminas/laminas-db
https://github.com/laminas/laminas-db/blob/1395efe76f7a20c322e78d1885efe103e5e291ff/src/RowGateway/RowGatewayInterface.php
src/RowGateway/RowGatewayInterface.php
<?php namespace Laminas\Db\RowGateway; interface RowGatewayInterface { public function save(); public function delete(); }
php
BSD-3-Clause
1395efe76f7a20c322e78d1885efe103e5e291ff
2026-01-05T05:03:07.882669Z
false
laminas/laminas-db
https://github.com/laminas/laminas-db/blob/1395efe76f7a20c322e78d1885efe103e5e291ff/src/RowGateway/AbstractRowGateway.php
src/RowGateway/AbstractRowGateway.php
<?php namespace Laminas\Db\RowGateway; use ArrayAccess; use Countable; use Laminas\Db\Sql\Sql; use Laminas\Db\Sql\TableIdentifier; // phpcs:ignore SlevomatCodingStandard.Namespaces.UnusedUses.UnusedUse use ReturnTypeWillChange; use function array_key_exists; use function count; use function is_string; abstract clas...
php
BSD-3-Clause
1395efe76f7a20c322e78d1885efe103e5e291ff
2026-01-05T05:03:07.882669Z
false
laminas/laminas-db
https://github.com/laminas/laminas-db/blob/1395efe76f7a20c322e78d1885efe103e5e291ff/src/RowGateway/RowGateway.php
src/RowGateway/RowGateway.php
<?php namespace Laminas\Db\RowGateway; use Laminas\Db\Adapter\AdapterInterface; use Laminas\Db\Sql\Sql; use Laminas\Db\Sql\TableIdentifier; class RowGateway extends AbstractRowGateway { /** * Constructor * * @param string $primaryKeyColumn * @param string|TableIdentifier $table * @param ...
php
BSD-3-Clause
1395efe76f7a20c322e78d1885efe103e5e291ff
2026-01-05T05:03:07.882669Z
false
laminas/laminas-db
https://github.com/laminas/laminas-db/blob/1395efe76f7a20c322e78d1885efe103e5e291ff/src/RowGateway/Feature/AbstractFeature.php
src/RowGateway/Feature/AbstractFeature.php
<?php namespace Laminas\Db\RowGateway\Feature; use Laminas\Db\RowGateway\AbstractRowGateway; use Laminas\Db\RowGateway\Exception; use Laminas\Db\RowGateway\Exception\RuntimeException; abstract class AbstractFeature extends AbstractRowGateway { /** @var AbstractRowGateway */ protected $rowGateway; /** @v...
php
BSD-3-Clause
1395efe76f7a20c322e78d1885efe103e5e291ff
2026-01-05T05:03:07.882669Z
false
laminas/laminas-db
https://github.com/laminas/laminas-db/blob/1395efe76f7a20c322e78d1885efe103e5e291ff/src/RowGateway/Feature/FeatureSet.php
src/RowGateway/Feature/FeatureSet.php
<?php namespace Laminas\Db\RowGateway\Feature; use Laminas\Db\RowGateway\AbstractRowGateway; use function call_user_func_array; use function method_exists; class FeatureSet { public const APPLY_HALT = 'halt'; /** @var AbstractRowGateway */ protected $rowGateway; /** @var AbstractFeature[] */ p...
php
BSD-3-Clause
1395efe76f7a20c322e78d1885efe103e5e291ff
2026-01-05T05:03:07.882669Z
false
laminas/laminas-db
https://github.com/laminas/laminas-db/blob/1395efe76f7a20c322e78d1885efe103e5e291ff/src/RowGateway/Exception/ExceptionInterface.php
src/RowGateway/Exception/ExceptionInterface.php
<?php namespace Laminas\Db\RowGateway\Exception; use Laminas\Db\Exception; interface ExceptionInterface extends Exception\ExceptionInterface { }
php
BSD-3-Clause
1395efe76f7a20c322e78d1885efe103e5e291ff
2026-01-05T05:03:07.882669Z
false
laminas/laminas-db
https://github.com/laminas/laminas-db/blob/1395efe76f7a20c322e78d1885efe103e5e291ff/src/RowGateway/Exception/RuntimeException.php
src/RowGateway/Exception/RuntimeException.php
<?php namespace Laminas\Db\RowGateway\Exception; use Laminas\Db\Exception; class RuntimeException extends Exception\RuntimeException implements ExceptionInterface { }
php
BSD-3-Clause
1395efe76f7a20c322e78d1885efe103e5e291ff
2026-01-05T05:03:07.882669Z
false
laminas/laminas-db
https://github.com/laminas/laminas-db/blob/1395efe76f7a20c322e78d1885efe103e5e291ff/src/RowGateway/Exception/InvalidArgumentException.php
src/RowGateway/Exception/InvalidArgumentException.php
<?php namespace Laminas\Db\RowGateway\Exception; use Laminas\Db\Exception; class InvalidArgumentException extends Exception\InvalidArgumentException implements ExceptionInterface { }
php
BSD-3-Clause
1395efe76f7a20c322e78d1885efe103e5e291ff
2026-01-05T05:03:07.882669Z
false
laminas/laminas-db
https://github.com/laminas/laminas-db/blob/1395efe76f7a20c322e78d1885efe103e5e291ff/src/Exception/ExceptionInterface.php
src/Exception/ExceptionInterface.php
<?php namespace Laminas\Db\Exception; interface ExceptionInterface { }
php
BSD-3-Clause
1395efe76f7a20c322e78d1885efe103e5e291ff
2026-01-05T05:03:07.882669Z
false
laminas/laminas-db
https://github.com/laminas/laminas-db/blob/1395efe76f7a20c322e78d1885efe103e5e291ff/src/Exception/RuntimeException.php
src/Exception/RuntimeException.php
<?php namespace Laminas\Db\Exception; class RuntimeException extends \RuntimeException implements ExceptionInterface { }
php
BSD-3-Clause
1395efe76f7a20c322e78d1885efe103e5e291ff
2026-01-05T05:03:07.882669Z
false
laminas/laminas-db
https://github.com/laminas/laminas-db/blob/1395efe76f7a20c322e78d1885efe103e5e291ff/src/Exception/UnexpectedValueException.php
src/Exception/UnexpectedValueException.php
<?php namespace Laminas\Db\Exception; class UnexpectedValueException extends \UnexpectedValueException implements ExceptionInterface { }
php
BSD-3-Clause
1395efe76f7a20c322e78d1885efe103e5e291ff
2026-01-05T05:03:07.882669Z
false
laminas/laminas-db
https://github.com/laminas/laminas-db/blob/1395efe76f7a20c322e78d1885efe103e5e291ff/src/Exception/InvalidArgumentException.php
src/Exception/InvalidArgumentException.php
<?php namespace Laminas\Db\Exception; class InvalidArgumentException extends \InvalidArgumentException implements ExceptionInterface { }
php
BSD-3-Clause
1395efe76f7a20c322e78d1885efe103e5e291ff
2026-01-05T05:03:07.882669Z
false
laminas/laminas-db
https://github.com/laminas/laminas-db/blob/1395efe76f7a20c322e78d1885efe103e5e291ff/src/Exception/ErrorException.php
src/Exception/ErrorException.php
<?php namespace Laminas\Db\Exception; use Exception; class ErrorException extends Exception implements ExceptionInterface { }
php
BSD-3-Clause
1395efe76f7a20c322e78d1885efe103e5e291ff
2026-01-05T05:03:07.882669Z
false
laminas/laminas-db
https://github.com/laminas/laminas-db/blob/1395efe76f7a20c322e78d1885efe103e5e291ff/src/Adapter/StatementContainerInterface.php
src/Adapter/StatementContainerInterface.php
<?php namespace Laminas\Db\Adapter; interface StatementContainerInterface { /** * Set sql * * @param null|string $sql * @return static */ public function setSql($sql); /** * Get sql * * @return null|string */ public function getSql(); /** * Set p...
php
BSD-3-Clause
1395efe76f7a20c322e78d1885efe103e5e291ff
2026-01-05T05:03:07.882669Z
false
laminas/laminas-db
https://github.com/laminas/laminas-db/blob/1395efe76f7a20c322e78d1885efe103e5e291ff/src/Adapter/Adapter.php
src/Adapter/Adapter.php
<?php namespace Laminas\Db\Adapter; use InvalidArgumentException; use Laminas\Db\ResultSet; use function func_get_args; use function in_array; use function is_array; use function is_bool; use function is_string; use function strpos; use function strtolower; /** * @property Driver\DriverInterface $driver * @proper...
php
BSD-3-Clause
1395efe76f7a20c322e78d1885efe103e5e291ff
2026-01-05T05:03:07.882669Z
false
laminas/laminas-db
https://github.com/laminas/laminas-db/blob/1395efe76f7a20c322e78d1885efe103e5e291ff/src/Adapter/AdapterAwareInterface.php
src/Adapter/AdapterAwareInterface.php
<?php namespace Laminas\Db\Adapter; interface AdapterAwareInterface { /** * Set db adapter * * @return AdapterAwareInterface */ public function setDbAdapter(Adapter $adapter); }
php
BSD-3-Clause
1395efe76f7a20c322e78d1885efe103e5e291ff
2026-01-05T05:03:07.882669Z
false
laminas/laminas-db
https://github.com/laminas/laminas-db/blob/1395efe76f7a20c322e78d1885efe103e5e291ff/src/Adapter/StatementContainer.php
src/Adapter/StatementContainer.php
<?php namespace Laminas\Db\Adapter; class StatementContainer implements StatementContainerInterface { /** @var string */ protected $sql = ''; /** @var ParameterContainer */ protected $parameterContainer; /** * @param string|null $sql */ public function __construct($sql = null, ?Par...
php
BSD-3-Clause
1395efe76f7a20c322e78d1885efe103e5e291ff
2026-01-05T05:03:07.882669Z
false
laminas/laminas-db
https://github.com/laminas/laminas-db/blob/1395efe76f7a20c322e78d1885efe103e5e291ff/src/Adapter/AdapterInterface.php
src/Adapter/AdapterInterface.php
<?php namespace Laminas\Db\Adapter; /** * @property Driver\DriverInterface $driver * @property Platform\PlatformInterface $platform */ interface AdapterInterface { /** * @return Driver\DriverInterface */ public function getDriver(); /** * @return Platform\PlatformInterface */ p...
php
BSD-3-Clause
1395efe76f7a20c322e78d1885efe103e5e291ff
2026-01-05T05:03:07.882669Z
false
laminas/laminas-db
https://github.com/laminas/laminas-db/blob/1395efe76f7a20c322e78d1885efe103e5e291ff/src/Adapter/ParameterContainer.php
src/Adapter/ParameterContainer.php
<?php namespace Laminas\Db\Adapter; use ArrayAccess; use ArrayIterator; use Countable; use Iterator; // phpcs:ignore SlevomatCodingStandard.Namespaces.UnusedUses.UnusedUse use ReturnTypeWillChange; use function array_key_exists; use function array_values; use function count; use function current; use function is_arr...
php
BSD-3-Clause
1395efe76f7a20c322e78d1885efe103e5e291ff
2026-01-05T05:03:07.882669Z
false
laminas/laminas-db
https://github.com/laminas/laminas-db/blob/1395efe76f7a20c322e78d1885efe103e5e291ff/src/Adapter/AdapterAwareTrait.php
src/Adapter/AdapterAwareTrait.php
<?php namespace Laminas\Db\Adapter; trait AdapterAwareTrait { /** @var Adapter */ protected $adapter; /** * Set db adapter * * @return $this Provides a fluent interface */ public function setDbAdapter(Adapter $adapter) { $this->adapter = $adapter; return $this...
php
BSD-3-Clause
1395efe76f7a20c322e78d1885efe103e5e291ff
2026-01-05T05:03:07.882669Z
false
laminas/laminas-db
https://github.com/laminas/laminas-db/blob/1395efe76f7a20c322e78d1885efe103e5e291ff/src/Adapter/AdapterServiceDelegator.php
src/Adapter/AdapterServiceDelegator.php
<?php namespace Laminas\Db\Adapter; use Psr\Container\ContainerInterface; class AdapterServiceDelegator { /** @var string */ private $adapterName; public function __construct(string $adapterName = AdapterInterface::class) { $this->adapterName = $adapterName; } public static function...
php
BSD-3-Clause
1395efe76f7a20c322e78d1885efe103e5e291ff
2026-01-05T05:03:07.882669Z
false
laminas/laminas-db
https://github.com/laminas/laminas-db/blob/1395efe76f7a20c322e78d1885efe103e5e291ff/src/Adapter/AdapterServiceFactory.php
src/Adapter/AdapterServiceFactory.php
<?php namespace Laminas\Db\Adapter; use Interop\Container\ContainerInterface; use Laminas\ServiceManager\FactoryInterface; use Laminas\ServiceManager\ServiceLocatorInterface; class AdapterServiceFactory implements FactoryInterface { /** * Create db adapter service * * @param string $requestedName ...
php
BSD-3-Clause
1395efe76f7a20c322e78d1885efe103e5e291ff
2026-01-05T05:03:07.882669Z
false
laminas/laminas-db
https://github.com/laminas/laminas-db/blob/1395efe76f7a20c322e78d1885efe103e5e291ff/src/Adapter/AdapterAbstractServiceFactory.php
src/Adapter/AdapterAbstractServiceFactory.php
<?php namespace Laminas\Db\Adapter; use Interop\Container\ContainerInterface; use Laminas\ServiceManager\AbstractFactoryInterface; use Laminas\ServiceManager\ServiceLocatorInterface; use function is_array; /** * Database adapter abstract service factory. * * Allows configuring several database instances (such as...
php
BSD-3-Clause
1395efe76f7a20c322e78d1885efe103e5e291ff
2026-01-05T05:03:07.882669Z
false
laminas/laminas-db
https://github.com/laminas/laminas-db/blob/1395efe76f7a20c322e78d1885efe103e5e291ff/src/Adapter/Driver/ConnectionInterface.php
src/Adapter/Driver/ConnectionInterface.php
<?php namespace Laminas\Db\Adapter\Driver; interface ConnectionInterface { /** * Get current schema * * @return string */ public function getCurrentSchema(); /** * Get resource * * @return mixed */ public function getResource(); /** * Connect * ...
php
BSD-3-Clause
1395efe76f7a20c322e78d1885efe103e5e291ff
2026-01-05T05:03:07.882669Z
false
laminas/laminas-db
https://github.com/laminas/laminas-db/blob/1395efe76f7a20c322e78d1885efe103e5e291ff/src/Adapter/Driver/ResultInterface.php
src/Adapter/Driver/ResultInterface.php
<?php namespace Laminas\Db\Adapter\Driver; use Countable; use Iterator; interface ResultInterface extends Countable, Iterator { /** * Force buffering * * @return void */ public function buffer(); /** * Check if is buffered * * @return bool|null */ publ...
php
BSD-3-Clause
1395efe76f7a20c322e78d1885efe103e5e291ff
2026-01-05T05:03:07.882669Z
false
laminas/laminas-db
https://github.com/laminas/laminas-db/blob/1395efe76f7a20c322e78d1885efe103e5e291ff/src/Adapter/Driver/DriverInterface.php
src/Adapter/Driver/DriverInterface.php
<?php namespace Laminas\Db\Adapter\Driver; interface DriverInterface { public const PARAMETERIZATION_POSITIONAL = 'positional'; public const PARAMETERIZATION_NAMED = 'named'; public const NAME_FORMAT_CAMELCASE = 'camelCase'; public const NAME_FORMAT_NATURAL = 'natural'; /** ...
php
BSD-3-Clause
1395efe76f7a20c322e78d1885efe103e5e291ff
2026-01-05T05:03:07.882669Z
false
laminas/laminas-db
https://github.com/laminas/laminas-db/blob/1395efe76f7a20c322e78d1885efe103e5e291ff/src/Adapter/Driver/AbstractConnection.php
src/Adapter/Driver/AbstractConnection.php
<?php namespace Laminas\Db\Adapter\Driver; use Laminas\Db\Adapter\Profiler\ProfilerAwareInterface; use Laminas\Db\Adapter\Profiler\ProfilerInterface; abstract class AbstractConnection implements ConnectionInterface, ProfilerAwareInterface { /** @var array */ protected $connectionParameters = []; /** @va...
php
BSD-3-Clause
1395efe76f7a20c322e78d1885efe103e5e291ff
2026-01-05T05:03:07.882669Z
false
laminas/laminas-db
https://github.com/laminas/laminas-db/blob/1395efe76f7a20c322e78d1885efe103e5e291ff/src/Adapter/Driver/StatementInterface.php
src/Adapter/Driver/StatementInterface.php
<?php namespace Laminas\Db\Adapter\Driver; use Laminas\Db\Adapter\ParameterContainer; use Laminas\Db\Adapter\StatementContainerInterface; interface StatementInterface extends StatementContainerInterface { /** * Get resource * * @return resource */ public function getResource(); /** ...
php
BSD-3-Clause
1395efe76f7a20c322e78d1885efe103e5e291ff
2026-01-05T05:03:07.882669Z
false
laminas/laminas-db
https://github.com/laminas/laminas-db/blob/1395efe76f7a20c322e78d1885efe103e5e291ff/src/Adapter/Driver/Sqlsrv/Connection.php
src/Adapter/Driver/Sqlsrv/Connection.php
<?php namespace Laminas\Db\Adapter\Driver\Sqlsrv; use Laminas\Db\Adapter\Driver\AbstractConnection; use Laminas\Db\Adapter\Driver\Sqlsrv\Exception\ErrorException; use Laminas\Db\Adapter\Exception; use Laminas\Db\Adapter\Exception\InvalidArgumentException; use function array_merge; use function get_resource_type; use...
php
BSD-3-Clause
1395efe76f7a20c322e78d1885efe103e5e291ff
2026-01-05T05:03:07.882669Z
false
laminas/laminas-db
https://github.com/laminas/laminas-db/blob/1395efe76f7a20c322e78d1885efe103e5e291ff/src/Adapter/Driver/Sqlsrv/Result.php
src/Adapter/Driver/Sqlsrv/Result.php
<?php namespace Laminas\Db\Adapter\Driver\Sqlsrv; use Iterator; use Laminas\Db\Adapter\Driver\ResultInterface; // phpcs:ignore SlevomatCodingStandard.Namespaces.UnusedUses.UnusedUse use ReturnTypeWillChange; use function is_bool; use function sqlsrv_fetch_array; use function sqlsrv_num_fields; use function sqlsrv_nu...
php
BSD-3-Clause
1395efe76f7a20c322e78d1885efe103e5e291ff
2026-01-05T05:03:07.882669Z
false
laminas/laminas-db
https://github.com/laminas/laminas-db/blob/1395efe76f7a20c322e78d1885efe103e5e291ff/src/Adapter/Driver/Sqlsrv/Sqlsrv.php
src/Adapter/Driver/Sqlsrv/Sqlsrv.php
<?php namespace Laminas\Db\Adapter\Driver\Sqlsrv; use Laminas\Db\Adapter\Driver\DriverInterface; use Laminas\Db\Adapter\Exception; use Laminas\Db\Adapter\Profiler; use function extension_loaded; use function is_resource; use function is_string; class Sqlsrv implements DriverInterface, Profiler\ProfilerAwareInterfac...
php
BSD-3-Clause
1395efe76f7a20c322e78d1885efe103e5e291ff
2026-01-05T05:03:07.882669Z
false
laminas/laminas-db
https://github.com/laminas/laminas-db/blob/1395efe76f7a20c322e78d1885efe103e5e291ff/src/Adapter/Driver/Sqlsrv/Statement.php
src/Adapter/Driver/Sqlsrv/Statement.php
<?php namespace Laminas\Db\Adapter\Driver\Sqlsrv; use Laminas\Db\Adapter\Driver\StatementInterface; use Laminas\Db\Adapter\Exception; use Laminas\Db\Adapter\ParameterContainer; use Laminas\Db\Adapter\Profiler; use function get_resource_type; use function is_array; use function sqlsrv_errors; use function sqlsrv_exec...
php
BSD-3-Clause
1395efe76f7a20c322e78d1885efe103e5e291ff
2026-01-05T05:03:07.882669Z
false
laminas/laminas-db
https://github.com/laminas/laminas-db/blob/1395efe76f7a20c322e78d1885efe103e5e291ff/src/Adapter/Driver/Sqlsrv/Exception/ExceptionInterface.php
src/Adapter/Driver/Sqlsrv/Exception/ExceptionInterface.php
<?php namespace Laminas\Db\Adapter\Driver\Sqlsrv\Exception; use Laminas\Db\Adapter\Exception; interface ExceptionInterface extends Exception\ExceptionInterface { }
php
BSD-3-Clause
1395efe76f7a20c322e78d1885efe103e5e291ff
2026-01-05T05:03:07.882669Z
false
laminas/laminas-db
https://github.com/laminas/laminas-db/blob/1395efe76f7a20c322e78d1885efe103e5e291ff/src/Adapter/Driver/Sqlsrv/Exception/ErrorException.php
src/Adapter/Driver/Sqlsrv/Exception/ErrorException.php
<?php namespace Laminas\Db\Adapter\Driver\Sqlsrv\Exception; use Laminas\Db\Adapter\Exception; use function sqlsrv_errors; class ErrorException extends Exception\ErrorException implements ExceptionInterface { /** * Errors * * @var array */ protected $errors = []; /** * Construct...
php
BSD-3-Clause
1395efe76f7a20c322e78d1885efe103e5e291ff
2026-01-05T05:03:07.882669Z
false
laminas/laminas-db
https://github.com/laminas/laminas-db/blob/1395efe76f7a20c322e78d1885efe103e5e291ff/src/Adapter/Driver/Feature/DriverFeatureInterface.php
src/Adapter/Driver/Feature/DriverFeatureInterface.php
<?php namespace Laminas\Db\Adapter\Driver\Feature; interface DriverFeatureInterface { /** * Setup the default features for Pdo * * @return DriverFeatureInterface */ public function setupDefaultFeatures(); /** * Add feature * * @param string $name * @param mixed $fe...
php
BSD-3-Clause
1395efe76f7a20c322e78d1885efe103e5e291ff
2026-01-05T05:03:07.882669Z
false
laminas/laminas-db
https://github.com/laminas/laminas-db/blob/1395efe76f7a20c322e78d1885efe103e5e291ff/src/Adapter/Driver/Feature/AbstractFeature.php
src/Adapter/Driver/Feature/AbstractFeature.php
<?php namespace Laminas\Db\Adapter\Driver\Feature; use Laminas\Db\Adapter\Driver\DriverInterface; abstract class AbstractFeature { /** @var DriverInterface */ protected $driver; /** * Set driver * * @return void */ public function setDriver(DriverInterface $driver) { ...
php
BSD-3-Clause
1395efe76f7a20c322e78d1885efe103e5e291ff
2026-01-05T05:03:07.882669Z
false
laminas/laminas-db
https://github.com/laminas/laminas-db/blob/1395efe76f7a20c322e78d1885efe103e5e291ff/src/Adapter/Driver/Oci8/Connection.php
src/Adapter/Driver/Oci8/Connection.php
<?php namespace Laminas\Db\Adapter\Driver\Oci8; use Laminas\Db\Adapter\Driver\AbstractConnection; use Laminas\Db\Adapter\Exception; use Laminas\Db\Adapter\Exception\InvalidArgumentException; use function get_resource_type; use function is_array; use function is_resource; class Connection extends AbstractConnection ...
php
BSD-3-Clause
1395efe76f7a20c322e78d1885efe103e5e291ff
2026-01-05T05:03:07.882669Z
false
laminas/laminas-db
https://github.com/laminas/laminas-db/blob/1395efe76f7a20c322e78d1885efe103e5e291ff/src/Adapter/Driver/Oci8/Result.php
src/Adapter/Driver/Oci8/Result.php
<?php namespace Laminas\Db\Adapter\Driver\Oci8; use Iterator; use Laminas\Db\Adapter\Driver\ResultInterface; use Laminas\Db\Adapter\Exception; // phpcs:ignore SlevomatCodingStandard.Namespaces.UnusedUses.UnusedUse use ReturnTypeWillChange; use function call_user_func; use function get_resource_type; use function is_...
php
BSD-3-Clause
1395efe76f7a20c322e78d1885efe103e5e291ff
2026-01-05T05:03:07.882669Z
false
laminas/laminas-db
https://github.com/laminas/laminas-db/blob/1395efe76f7a20c322e78d1885efe103e5e291ff/src/Adapter/Driver/Oci8/Statement.php
src/Adapter/Driver/Oci8/Statement.php
<?php namespace Laminas\Db\Adapter\Driver\Oci8; use Laminas\Db\Adapter\Driver\StatementInterface; use Laminas\Db\Adapter\Exception; use Laminas\Db\Adapter\ParameterContainer; use Laminas\Db\Adapter\Profiler; use function is_array; use function is_string; use function oci_bind_by_name; use function oci_error; use fun...
php
BSD-3-Clause
1395efe76f7a20c322e78d1885efe103e5e291ff
2026-01-05T05:03:07.882669Z
false
laminas/laminas-db
https://github.com/laminas/laminas-db/blob/1395efe76f7a20c322e78d1885efe103e5e291ff/src/Adapter/Driver/Oci8/Oci8.php
src/Adapter/Driver/Oci8/Oci8.php
<?php namespace Laminas\Db\Adapter\Driver\Oci8; use Laminas\Db\Adapter\Driver\DriverInterface; use Laminas\Db\Adapter\Driver\Feature\AbstractFeature; use Laminas\Db\Adapter\Exception; use Laminas\Db\Adapter\Profiler; use function array_intersect_key; use function array_merge; use function extension_loaded; use funct...
php
BSD-3-Clause
1395efe76f7a20c322e78d1885efe103e5e291ff
2026-01-05T05:03:07.882669Z
false
laminas/laminas-db
https://github.com/laminas/laminas-db/blob/1395efe76f7a20c322e78d1885efe103e5e291ff/src/Adapter/Driver/Oci8/Feature/RowCounter.php
src/Adapter/Driver/Oci8/Feature/RowCounter.php
<?php namespace Laminas\Db\Adapter\Driver\Oci8\Feature; use Laminas\Db\Adapter\Driver\Feature\AbstractFeature; use Laminas\Db\Adapter\Driver\Oci8\Statement; use function stripos; use function strtolower; /** * Class for count of results of a select */ class RowCounter extends AbstractFeature { /** * @ret...
php
BSD-3-Clause
1395efe76f7a20c322e78d1885efe103e5e291ff
2026-01-05T05:03:07.882669Z
false
laminas/laminas-db
https://github.com/laminas/laminas-db/blob/1395efe76f7a20c322e78d1885efe103e5e291ff/src/Adapter/Driver/Pdo/Connection.php
src/Adapter/Driver/Pdo/Connection.php
<?php namespace Laminas\Db\Adapter\Driver\Pdo; use Laminas\Db\Adapter\Driver\AbstractConnection; use Laminas\Db\Adapter\Exception; use Laminas\Db\Adapter\Exception\RunTimeException; use PDOException; use PDOStatement; use function array_diff_key; use function implode; use function is_array; use function is_int; use ...
php
BSD-3-Clause
1395efe76f7a20c322e78d1885efe103e5e291ff
2026-01-05T05:03:07.882669Z
false
laminas/laminas-db
https://github.com/laminas/laminas-db/blob/1395efe76f7a20c322e78d1885efe103e5e291ff/src/Adapter/Driver/Pdo/Result.php
src/Adapter/Driver/Pdo/Result.php
<?php namespace Laminas\Db\Adapter\Driver\Pdo; use Closure; use Iterator; use Laminas\Db\Adapter\Driver\ResultInterface; use Laminas\Db\Adapter\Exception; use PDO; use PDOStatement; // phpcs:ignore SlevomatCodingStandard.Namespaces.UnusedUses.UnusedUse use ReturnTypeWillChange; use function call_user_func; use funct...
php
BSD-3-Clause
1395efe76f7a20c322e78d1885efe103e5e291ff
2026-01-05T05:03:07.882669Z
false
laminas/laminas-db
https://github.com/laminas/laminas-db/blob/1395efe76f7a20c322e78d1885efe103e5e291ff/src/Adapter/Driver/Pdo/Pdo.php
src/Adapter/Driver/Pdo/Pdo.php
<?php namespace Laminas\Db\Adapter\Driver\Pdo; use Laminas\Db\Adapter\Driver\DriverInterface; use Laminas\Db\Adapter\Driver\Feature\AbstractFeature; use Laminas\Db\Adapter\Driver\Feature\DriverFeatureInterface; use Laminas\Db\Adapter\Exception; use Laminas\Db\Adapter\Profiler; use PDOStatement; use function extensio...
php
BSD-3-Clause
1395efe76f7a20c322e78d1885efe103e5e291ff
2026-01-05T05:03:07.882669Z
false
laminas/laminas-db
https://github.com/laminas/laminas-db/blob/1395efe76f7a20c322e78d1885efe103e5e291ff/src/Adapter/Driver/Pdo/Statement.php
src/Adapter/Driver/Pdo/Statement.php
<?php namespace Laminas\Db\Adapter\Driver\Pdo; use Laminas\Db\Adapter\Driver\StatementInterface; use Laminas\Db\Adapter\Exception; use Laminas\Db\Adapter\ParameterContainer; use Laminas\Db\Adapter\Profiler; use PDOException; use PDOStatement; use function implode; use function is_array; use function is_bool; use fun...
php
BSD-3-Clause
1395efe76f7a20c322e78d1885efe103e5e291ff
2026-01-05T05:03:07.882669Z
false
laminas/laminas-db
https://github.com/laminas/laminas-db/blob/1395efe76f7a20c322e78d1885efe103e5e291ff/src/Adapter/Driver/Pdo/Feature/OracleRowCounter.php
src/Adapter/Driver/Pdo/Feature/OracleRowCounter.php
<?php namespace Laminas\Db\Adapter\Driver\Pdo\Feature; use Closure; use Laminas\Db\Adapter\Driver\Feature\AbstractFeature; use Laminas\Db\Adapter\Driver\Pdo; use function stripos; /** * OracleRowCounter */ class OracleRowCounter extends AbstractFeature { /** * @return string */ public function g...
php
BSD-3-Clause
1395efe76f7a20c322e78d1885efe103e5e291ff
2026-01-05T05:03:07.882669Z
false
laminas/laminas-db
https://github.com/laminas/laminas-db/blob/1395efe76f7a20c322e78d1885efe103e5e291ff/src/Adapter/Driver/Pdo/Feature/SqliteRowCounter.php
src/Adapter/Driver/Pdo/Feature/SqliteRowCounter.php
<?php namespace Laminas\Db\Adapter\Driver\Pdo\Feature; use Closure; use Laminas\Db\Adapter\Driver\Feature\AbstractFeature; use Laminas\Db\Adapter\Driver\Pdo; use function stripos; /** * SqliteRowCounter */ class SqliteRowCounter extends AbstractFeature { /** * @return string */ public function g...
php
BSD-3-Clause
1395efe76f7a20c322e78d1885efe103e5e291ff
2026-01-05T05:03:07.882669Z
false
laminas/laminas-db
https://github.com/laminas/laminas-db/blob/1395efe76f7a20c322e78d1885efe103e5e291ff/src/Adapter/Driver/IbmDb2/IbmDb2.php
src/Adapter/Driver/IbmDb2/IbmDb2.php
<?php namespace Laminas\Db\Adapter\Driver\IbmDb2; use Laminas\Db\Adapter\Driver\DriverInterface; use Laminas\Db\Adapter\Exception; use Laminas\Db\Adapter\Profiler; use function extension_loaded; use function get_resource_type; use function is_resource; use function is_string; class IbmDb2 implements DriverInterface...
php
BSD-3-Clause
1395efe76f7a20c322e78d1885efe103e5e291ff
2026-01-05T05:03:07.882669Z
false
laminas/laminas-db
https://github.com/laminas/laminas-db/blob/1395efe76f7a20c322e78d1885efe103e5e291ff/src/Adapter/Driver/IbmDb2/Connection.php
src/Adapter/Driver/IbmDb2/Connection.php
<?php namespace Laminas\Db\Adapter\Driver\IbmDb2; use Laminas\Db\Adapter\Driver\AbstractConnection; use Laminas\Db\Adapter\Exception; use function get_resource_type; use function ini_get; use function is_array; use function is_resource; use function php_uname; use function restore_error_handler; use function set_err...
php
BSD-3-Clause
1395efe76f7a20c322e78d1885efe103e5e291ff
2026-01-05T05:03:07.882669Z
false
laminas/laminas-db
https://github.com/laminas/laminas-db/blob/1395efe76f7a20c322e78d1885efe103e5e291ff/src/Adapter/Driver/IbmDb2/Result.php
src/Adapter/Driver/IbmDb2/Result.php
<?php namespace Laminas\Db\Adapter\Driver\IbmDb2; use Laminas\Db\Adapter\Driver\ResultInterface; use Laminas\Db\Adapter\Exception; // phpcs:ignore SlevomatCodingStandard.Namespaces.UnusedUses.UnusedUse use ReturnTypeWillChange; class Result implements ResultInterface { /** @var resource */ protected $resourc...
php
BSD-3-Clause
1395efe76f7a20c322e78d1885efe103e5e291ff
2026-01-05T05:03:07.882669Z
false
laminas/laminas-db
https://github.com/laminas/laminas-db/blob/1395efe76f7a20c322e78d1885efe103e5e291ff/src/Adapter/Driver/IbmDb2/Statement.php
src/Adapter/Driver/IbmDb2/Statement.php
<?php namespace Laminas\Db\Adapter\Driver\IbmDb2; use ErrorException; use Laminas\Db\Adapter\Driver\StatementInterface; use Laminas\Db\Adapter\Exception; use Laminas\Db\Adapter\Exception\InvalidArgumentException; use Laminas\Db\Adapter\ParameterContainer; use Laminas\Db\Adapter\Profiler; use function error_reporting...
php
BSD-3-Clause
1395efe76f7a20c322e78d1885efe103e5e291ff
2026-01-05T05:03:07.882669Z
false
laminas/laminas-db
https://github.com/laminas/laminas-db/blob/1395efe76f7a20c322e78d1885efe103e5e291ff/src/Adapter/Driver/Mysqli/Connection.php
src/Adapter/Driver/Mysqli/Connection.php
<?php namespace Laminas\Db\Adapter\Driver\Mysqli; use Exception as GenericException; use Laminas\Db\Adapter\Driver\AbstractConnection; use Laminas\Db\Adapter\Exception; use Laminas\Db\Adapter\Exception\InvalidArgumentException; use function constant; use function defined; use function is_array; use function is_strin...
php
BSD-3-Clause
1395efe76f7a20c322e78d1885efe103e5e291ff
2026-01-05T05:03:07.882669Z
false
laminas/laminas-db
https://github.com/laminas/laminas-db/blob/1395efe76f7a20c322e78d1885efe103e5e291ff/src/Adapter/Driver/Mysqli/Result.php
src/Adapter/Driver/Mysqli/Result.php
<?php namespace Laminas\Db\Adapter\Driver\Mysqli; use Iterator; use Laminas\Db\Adapter\Driver\ResultInterface; use Laminas\Db\Adapter\Exception; use mysqli; use mysqli_result; use mysqli_stmt; // phpcs:ignore SlevomatCodingStandard.Namespaces.UnusedUses.UnusedUse use ReturnTypeWillChange; use function array_fill; us...
php
BSD-3-Clause
1395efe76f7a20c322e78d1885efe103e5e291ff
2026-01-05T05:03:07.882669Z
false
laminas/laminas-db
https://github.com/laminas/laminas-db/blob/1395efe76f7a20c322e78d1885efe103e5e291ff/src/Adapter/Driver/Mysqli/Statement.php
src/Adapter/Driver/Mysqli/Statement.php
<?php namespace Laminas\Db\Adapter\Driver\Mysqli; use Laminas\Db\Adapter\Driver\StatementInterface; use Laminas\Db\Adapter\Exception; use Laminas\Db\Adapter\ParameterContainer; use Laminas\Db\Adapter\Profiler; use mysqli_stmt; use function array_unshift; use function call_user_func_array; use function is_array; cla...
php
BSD-3-Clause
1395efe76f7a20c322e78d1885efe103e5e291ff
2026-01-05T05:03:07.882669Z
false
laminas/laminas-db
https://github.com/laminas/laminas-db/blob/1395efe76f7a20c322e78d1885efe103e5e291ff/src/Adapter/Driver/Mysqli/Mysqli.php
src/Adapter/Driver/Mysqli/Mysqli.php
<?php namespace Laminas\Db\Adapter\Driver\Mysqli; use Laminas\Db\Adapter\Driver\DriverInterface; use Laminas\Db\Adapter\Exception; use Laminas\Db\Adapter\Profiler; use mysqli_stmt; use function array_intersect_key; use function array_merge; use function extension_loaded; use function is_string; class Mysqli impleme...
php
BSD-3-Clause
1395efe76f7a20c322e78d1885efe103e5e291ff
2026-01-05T05:03:07.882669Z
false
laminas/laminas-db
https://github.com/laminas/laminas-db/blob/1395efe76f7a20c322e78d1885efe103e5e291ff/src/Adapter/Driver/Pgsql/Connection.php
src/Adapter/Driver/Pgsql/Connection.php
<?php namespace Laminas\Db\Adapter\Driver\Pgsql; use Laminas\Db\Adapter\Driver\AbstractConnection; use Laminas\Db\Adapter\Exception; use Laminas\Db\ResultSet\ResultSetInterface; use PgSql\Connection as PgSqlConnection; use function array_filter; use function defined; use function http_build_query; use function is_ar...
php
BSD-3-Clause
1395efe76f7a20c322e78d1885efe103e5e291ff
2026-01-05T05:03:07.882669Z
false
laminas/laminas-db
https://github.com/laminas/laminas-db/blob/1395efe76f7a20c322e78d1885efe103e5e291ff/src/Adapter/Driver/Pgsql/Result.php
src/Adapter/Driver/Pgsql/Result.php
<?php namespace Laminas\Db\Adapter\Driver\Pgsql; use Laminas\Db\Adapter\Driver\ResultInterface; use Laminas\Db\Adapter\Exception; use PgSql\Result as PgSqlResult; // phpcs:ignore SlevomatCodingStandard.Namespaces.UnusedUses.UnusedUse use ReturnTypeWillChange; use function get_resource_type; use function is_resource;...
php
BSD-3-Clause
1395efe76f7a20c322e78d1885efe103e5e291ff
2026-01-05T05:03:07.882669Z
false
laminas/laminas-db
https://github.com/laminas/laminas-db/blob/1395efe76f7a20c322e78d1885efe103e5e291ff/src/Adapter/Driver/Pgsql/Pgsql.php
src/Adapter/Driver/Pgsql/Pgsql.php
<?php namespace Laminas\Db\Adapter\Driver\Pgsql; use Laminas\Db\Adapter\Driver\DriverInterface; use Laminas\Db\Adapter\Exception; use Laminas\Db\Adapter\Profiler; use function extension_loaded; use function is_string; class Pgsql implements DriverInterface, Profiler\ProfilerAwareInterface { /** @var Connection ...
php
BSD-3-Clause
1395efe76f7a20c322e78d1885efe103e5e291ff
2026-01-05T05:03:07.882669Z
false
laminas/laminas-db
https://github.com/laminas/laminas-db/blob/1395efe76f7a20c322e78d1885efe103e5e291ff/src/Adapter/Driver/Pgsql/Statement.php
src/Adapter/Driver/Pgsql/Statement.php
<?php namespace Laminas\Db\Adapter\Driver\Pgsql; use Laminas\Db\Adapter\Driver\StatementInterface; use Laminas\Db\Adapter\Exception; use Laminas\Db\Adapter\ParameterContainer; use Laminas\Db\Adapter\Profiler; use PgSql\Connection as PgSqlConnection; use function get_resource_type; use function is_array; use function...
php
BSD-3-Clause
1395efe76f7a20c322e78d1885efe103e5e291ff
2026-01-05T05:03:07.882669Z
false
laminas/laminas-db
https://github.com/laminas/laminas-db/blob/1395efe76f7a20c322e78d1885efe103e5e291ff/src/Adapter/Profiler/ProfilerAwareInterface.php
src/Adapter/Profiler/ProfilerAwareInterface.php
<?php namespace Laminas\Db\Adapter\Profiler; interface ProfilerAwareInterface { public function setProfiler(ProfilerInterface $profiler); }
php
BSD-3-Clause
1395efe76f7a20c322e78d1885efe103e5e291ff
2026-01-05T05:03:07.882669Z
false
laminas/laminas-db
https://github.com/laminas/laminas-db/blob/1395efe76f7a20c322e78d1885efe103e5e291ff/src/Adapter/Profiler/ProfilerInterface.php
src/Adapter/Profiler/ProfilerInterface.php
<?php namespace Laminas\Db\Adapter\Profiler; use Laminas\Db\Adapter\StatementContainerInterface; interface ProfilerInterface { /** * @param string|StatementContainerInterface $target * @return mixed */ public function profilerStart($target); public function profilerFinish(); }
php
BSD-3-Clause
1395efe76f7a20c322e78d1885efe103e5e291ff
2026-01-05T05:03:07.882669Z
false
laminas/laminas-db
https://github.com/laminas/laminas-db/blob/1395efe76f7a20c322e78d1885efe103e5e291ff/src/Adapter/Profiler/Profiler.php
src/Adapter/Profiler/Profiler.php
<?php namespace Laminas\Db\Adapter\Profiler; use Laminas\Db\Adapter\Exception; use Laminas\Db\Adapter\Exception\InvalidArgumentException; use Laminas\Db\Adapter\StatementContainerInterface; use function end; use function is_string; use function microtime; class Profiler implements ProfilerInterface { /** @var a...
php
BSD-3-Clause
1395efe76f7a20c322e78d1885efe103e5e291ff
2026-01-05T05:03:07.882669Z
false
laminas/laminas-db
https://github.com/laminas/laminas-db/blob/1395efe76f7a20c322e78d1885efe103e5e291ff/src/Adapter/Exception/InvalidConnectionParametersException.php
src/Adapter/Exception/InvalidConnectionParametersException.php
<?php namespace Laminas\Db\Adapter\Exception; class InvalidConnectionParametersException extends RuntimeException implements ExceptionInterface { /** @var int */ protected $parameters; /** * @param string $message * @param int $parameters */ public function __construct($message, $param...
php
BSD-3-Clause
1395efe76f7a20c322e78d1885efe103e5e291ff
2026-01-05T05:03:07.882669Z
false
laminas/laminas-db
https://github.com/laminas/laminas-db/blob/1395efe76f7a20c322e78d1885efe103e5e291ff/src/Adapter/Exception/InvalidQueryException.php
src/Adapter/Exception/InvalidQueryException.php
<?php namespace Laminas\Db\Adapter\Exception; class InvalidQueryException extends UnexpectedValueException implements ExceptionInterface { }
php
BSD-3-Clause
1395efe76f7a20c322e78d1885efe103e5e291ff
2026-01-05T05:03:07.882669Z
false
laminas/laminas-db
https://github.com/laminas/laminas-db/blob/1395efe76f7a20c322e78d1885efe103e5e291ff/src/Adapter/Exception/ExceptionInterface.php
src/Adapter/Exception/ExceptionInterface.php
<?php namespace Laminas\Db\Adapter\Exception; use Laminas\Db\Exception; interface ExceptionInterface extends Exception\ExceptionInterface { }
php
BSD-3-Clause
1395efe76f7a20c322e78d1885efe103e5e291ff
2026-01-05T05:03:07.882669Z
false
laminas/laminas-db
https://github.com/laminas/laminas-db/blob/1395efe76f7a20c322e78d1885efe103e5e291ff/src/Adapter/Exception/RuntimeException.php
src/Adapter/Exception/RuntimeException.php
<?php namespace Laminas\Db\Adapter\Exception; use Laminas\Db\Exception; class RuntimeException extends Exception\RuntimeException implements ExceptionInterface { }
php
BSD-3-Clause
1395efe76f7a20c322e78d1885efe103e5e291ff
2026-01-05T05:03:07.882669Z
false
laminas/laminas-db
https://github.com/laminas/laminas-db/blob/1395efe76f7a20c322e78d1885efe103e5e291ff/src/Adapter/Exception/UnexpectedValueException.php
src/Adapter/Exception/UnexpectedValueException.php
<?php namespace Laminas\Db\Adapter\Exception; use Laminas\Db\Exception; class UnexpectedValueException extends Exception\UnexpectedValueException implements ExceptionInterface { }
php
BSD-3-Clause
1395efe76f7a20c322e78d1885efe103e5e291ff
2026-01-05T05:03:07.882669Z
false
laminas/laminas-db
https://github.com/laminas/laminas-db/blob/1395efe76f7a20c322e78d1885efe103e5e291ff/src/Adapter/Exception/InvalidArgumentException.php
src/Adapter/Exception/InvalidArgumentException.php
<?php namespace Laminas\Db\Adapter\Exception; use Laminas\Db\Exception; class InvalidArgumentException extends Exception\InvalidArgumentException implements ExceptionInterface { }
php
BSD-3-Clause
1395efe76f7a20c322e78d1885efe103e5e291ff
2026-01-05T05:03:07.882669Z
false
laminas/laminas-db
https://github.com/laminas/laminas-db/blob/1395efe76f7a20c322e78d1885efe103e5e291ff/src/Adapter/Exception/ErrorException.php
src/Adapter/Exception/ErrorException.php
<?php namespace Laminas\Db\Adapter\Exception; use Laminas\Db\Exception; class ErrorException extends Exception\ErrorException implements ExceptionInterface { }
php
BSD-3-Clause
1395efe76f7a20c322e78d1885efe103e5e291ff
2026-01-05T05:03:07.882669Z
false
laminas/laminas-db
https://github.com/laminas/laminas-db/blob/1395efe76f7a20c322e78d1885efe103e5e291ff/src/Adapter/Platform/IbmDb2.php
src/Adapter/Platform/IbmDb2.php
<?php namespace Laminas\Db\Adapter\Platform; use function db2_escape_string; use function function_exists; use function implode; use function is_array; use function preg_split; use function sprintf; use function str_replace; use function strtolower; use function trigger_error; use const PREG_SPLIT_DELIM_CAPTURE; use...
php
BSD-3-Clause
1395efe76f7a20c322e78d1885efe103e5e291ff
2026-01-05T05:03:07.882669Z
false
laminas/laminas-db
https://github.com/laminas/laminas-db/blob/1395efe76f7a20c322e78d1885efe103e5e291ff/src/Adapter/Platform/Oracle.php
src/Adapter/Platform/Oracle.php
<?php namespace Laminas\Db\Adapter\Platform; use Laminas\Db\Adapter\Driver\DriverInterface; use Laminas\Db\Adapter\Driver\Oci8\Oci8; use Laminas\Db\Adapter\Driver\Pdo\Pdo; use Laminas\Db\Adapter\Exception\InvalidArgumentException; use function addcslashes; use function get_resource_type; use function implode; use fu...
php
BSD-3-Clause
1395efe76f7a20c322e78d1885efe103e5e291ff
2026-01-05T05:03:07.882669Z
false
laminas/laminas-db
https://github.com/laminas/laminas-db/blob/1395efe76f7a20c322e78d1885efe103e5e291ff/src/Adapter/Platform/Mysql.php
src/Adapter/Platform/Mysql.php
<?php namespace Laminas\Db\Adapter\Platform; use Laminas\Db\Adapter\Driver\DriverInterface; use Laminas\Db\Adapter\Driver\Mysqli; use Laminas\Db\Adapter\Driver\Pdo; use Laminas\Db\Adapter\Exception; use Laminas\Db\Adapter\Exception\InvalidArgumentException; use function implode; use function str_replace; class Mysq...
php
BSD-3-Clause
1395efe76f7a20c322e78d1885efe103e5e291ff
2026-01-05T05:03:07.882669Z
false
laminas/laminas-db
https://github.com/laminas/laminas-db/blob/1395efe76f7a20c322e78d1885efe103e5e291ff/src/Adapter/Platform/Postgresql.php
src/Adapter/Platform/Postgresql.php
<?php namespace Laminas\Db\Adapter\Platform; use Laminas\Db\Adapter\Driver\DriverInterface; use Laminas\Db\Adapter\Driver\Pdo; use Laminas\Db\Adapter\Driver\Pgsql; use Laminas\Db\Adapter\Exception; use PgSql\Connection as PgSqlConnection; use function get_resource_type; use function implode; use function in_array; u...
php
BSD-3-Clause
1395efe76f7a20c322e78d1885efe103e5e291ff
2026-01-05T05:03:07.882669Z
false
laminas/laminas-db
https://github.com/laminas/laminas-db/blob/1395efe76f7a20c322e78d1885efe103e5e291ff/src/Adapter/Platform/Sql92.php
src/Adapter/Platform/Sql92.php
<?php namespace Laminas\Db\Adapter\Platform; use function addcslashes; use function trigger_error; class Sql92 extends AbstractPlatform { /** * {@inheritDoc} */ public function getName() { return 'SQL92'; } /** * {@inheritDoc} */ public function quoteValue($value)...
php
BSD-3-Clause
1395efe76f7a20c322e78d1885efe103e5e291ff
2026-01-05T05:03:07.882669Z
false
laminas/laminas-db
https://github.com/laminas/laminas-db/blob/1395efe76f7a20c322e78d1885efe103e5e291ff/src/Adapter/Platform/PlatformInterface.php
src/Adapter/Platform/PlatformInterface.php
<?php namespace Laminas\Db\Adapter\Platform; interface PlatformInterface { /** * Get name * * @return string */ public function getName(); /** * Get quote identifier symbol * * @return string */ public function getQuoteIdentifierSymbol(); /** * Quote ...
php
BSD-3-Clause
1395efe76f7a20c322e78d1885efe103e5e291ff
2026-01-05T05:03:07.882669Z
false
laminas/laminas-db
https://github.com/laminas/laminas-db/blob/1395efe76f7a20c322e78d1885efe103e5e291ff/src/Adapter/Platform/SqlServer.php
src/Adapter/Platform/SqlServer.php
<?php namespace Laminas\Db\Adapter\Platform; use Laminas\Db\Adapter\Driver\DriverInterface; use Laminas\Db\Adapter\Driver\Pdo; use Laminas\Db\Adapter\Driver\Sqlsrv\Sqlsrv; use Laminas\Db\Adapter\Exception; use Laminas\Db\Adapter\Exception\InvalidArgumentException; use function addcslashes; use function implode; use ...
php
BSD-3-Clause
1395efe76f7a20c322e78d1885efe103e5e291ff
2026-01-05T05:03:07.882669Z
false
laminas/laminas-db
https://github.com/laminas/laminas-db/blob/1395efe76f7a20c322e78d1885efe103e5e291ff/src/Adapter/Platform/Sqlite.php
src/Adapter/Platform/Sqlite.php
<?php namespace Laminas\Db\Adapter\Platform; use Laminas\Db\Adapter\Driver\DriverInterface; use Laminas\Db\Adapter\Driver\Pdo; use Laminas\Db\Adapter\Exception; class Sqlite extends AbstractPlatform { /** @var string[] */ protected $quoteIdentifier = ['"', '"']; /** * {@inheritDoc} */ prot...
php
BSD-3-Clause
1395efe76f7a20c322e78d1885efe103e5e291ff
2026-01-05T05:03:07.882669Z
false
laminas/laminas-db
https://github.com/laminas/laminas-db/blob/1395efe76f7a20c322e78d1885efe103e5e291ff/src/Adapter/Platform/AbstractPlatform.php
src/Adapter/Platform/AbstractPlatform.php
<?php namespace Laminas\Db\Adapter\Platform; use function addcslashes; use function array_map; use function implode; use function preg_split; use function str_replace; use function strtolower; use function trigger_error; use const PREG_SPLIT_DELIM_CAPTURE; use const PREG_SPLIT_NO_EMPTY; abstract class AbstractPlatf...
php
BSD-3-Clause
1395efe76f7a20c322e78d1885efe103e5e291ff
2026-01-05T05:03:07.882669Z
false
laminas/laminas-db
https://github.com/laminas/laminas-db/blob/1395efe76f7a20c322e78d1885efe103e5e291ff/src/Sql/SqlInterface.php
src/Sql/SqlInterface.php
<?php namespace Laminas\Db\Sql; use Laminas\Db\Adapter\Platform\PlatformInterface; interface SqlInterface { /** * Get SQL string for statement * * @return string */ public function getSqlString(?PlatformInterface $adapterPlatform = null); }
php
BSD-3-Clause
1395efe76f7a20c322e78d1885efe103e5e291ff
2026-01-05T05:03:07.882669Z
false
laminas/laminas-db
https://github.com/laminas/laminas-db/blob/1395efe76f7a20c322e78d1885efe103e5e291ff/src/Sql/Insert.php
src/Sql/Insert.php
<?php namespace Laminas\Db\Sql; use Laminas\Db\Adapter\Driver\DriverInterface; use Laminas\Db\Adapter\Driver\Pdo\Pdo; use Laminas\Db\Adapter\ParameterContainer; use Laminas\Db\Adapter\Platform\PlatformInterface; use function array_combine; use function array_flip; use function array_key_exists; use function array_ke...
php
BSD-3-Clause
1395efe76f7a20c322e78d1885efe103e5e291ff
2026-01-05T05:03:07.882669Z
false
laminas/laminas-db
https://github.com/laminas/laminas-db/blob/1395efe76f7a20c322e78d1885efe103e5e291ff/src/Sql/Expression.php
src/Sql/Expression.php
<?php namespace Laminas\Db\Sql; use function array_unique; use function count; use function is_array; use function is_scalar; use function is_string; use function preg_match_all; use function str_ireplace; use function str_replace; class Expression extends AbstractExpression { /** * @const */ publi...
php
BSD-3-Clause
1395efe76f7a20c322e78d1885efe103e5e291ff
2026-01-05T05:03:07.882669Z
false
laminas/laminas-db
https://github.com/laminas/laminas-db/blob/1395efe76f7a20c322e78d1885efe103e5e291ff/src/Sql/Update.php
src/Sql/Update.php
<?php namespace Laminas\Db\Sql; use Closure; use Laminas\Db\Adapter\Driver\DriverInterface; use Laminas\Db\Adapter\Driver\Pdo\Pdo; use Laminas\Db\Adapter\ParameterContainer; use Laminas\Db\Adapter\Platform\PlatformInterface; use Laminas\Db\Sql\Predicate\PredicateInterface; use Laminas\Stdlib\PriorityList; use functi...
php
BSD-3-Clause
1395efe76f7a20c322e78d1885efe103e5e291ff
2026-01-05T05:03:07.882669Z
false