/var/www/vhosts/ihelp.ro/_OLD/vendor/cakephp/cakephp/src/Datasource
NameSizeModeActions
Exception/-0755rm
Locator/-0755rm
composer.json12680644editdlrm
ConnectionInterface.php51060644editdlrm
ConnectionManager.php73580644editdlrm
ConnectionRegistry.php33750644editdlrm
EntityInterface.php84420644editdlrm
EntityTrait.php345930644editdlrm
FactoryLocator.php29110644editdlrm
FixtureInterface.php23750644editdlrm
InvalidPropertyInterface.php20740644editdlrm
LICENSE.txt12040644editdlrm
ModelAwareTrait.php58340644editdlrm
Paginator.php226280644editdlrm
PaginatorInterface.php13970644editdlrm
QueryCacher.php38320644editdlrm
QueryInterface.php148780644editdlrm
QueryTrait.php170340644editdlrm
README.md34140644editdlrm
RepositoryInterface.php91670644editdlrm
ResultSetDecorator.php13730644editdlrm
ResultSetInterface.php8840644editdlrm
RuleInvoker.php37720644editdlrm
RulesAwareTrait.php40920644editdlrm
RulesChecker.php114300644editdlrm
SchemaInterface.php48580644editdlrm
SimplePaginator.php13740644editdlrm
Edit: /var/www/vhosts/ihelp.ro/_OLD/vendor/cakephp/cakephp/src/Datasource/ConnectionInterface.php (5106B)
transactional(function ($connection) { * $connection->newQuery()->delete('users')->execute(); * }); * ``` * * @param callable $transaction The callback to execute within a transaction. * @return mixed The return value of the callback. * @throws \Exception Will re-throw any exception raised in $callback after * rolling back the transaction. */ public function transactional(callable $transaction); /** * Run an operation with constraints disabled. * * Constraints should be re-enabled after the callback succeeds/fails. * * ### Example: * * ``` * $connection->disableConstraints(function ($connection) { * $connection->newQuery()->delete('users')->execute(); * }); * ``` * * @param callable $operation The callback to execute within a transaction. * @return mixed The return value of the callback. * @throws \Exception Will re-throw any exception raised in $callback after * rolling back the transaction. */ public function disableConstraints(callable $operation); /** * Enable/disable query logging * * @param bool $value Enable/disable query logging * @return $this */ public function enableQueryLogging(bool $value = true); /** * Disable query logging * * @return $this */ public function disableQueryLogging(); /** * Check if query logging is enabled. * * @return bool */ public function isQueryLoggingEnabled(): bool; }