Code Coverage
 
Lines
Functions and Methods
Classes and Traits
Total
n/a
0 / 0
n/a
0 / 0
CRAP
n/a
0 / 0
1<?php
2
3namespace BO\Zmsbackend\Connection;
4
5/**
6 * @codeCoverageIgnore
7 */
8interface PdoInterface
9{
10    /**
11     * @return bool
12     *
13     * @psalm-suppress PossiblyUnusedReturnValue PDO callers often ignore this bool
14     */
15    public function beginTransaction(): bool;
16
17    /**
18     * @return bool
19     *
20     * @psalm-suppress PossiblyUnusedReturnValue PDO callers often ignore this bool
21     */
22    public function commit(): bool;
23
24    public function inTransaction(): bool;
25
26    /**
27     * @return bool
28     *
29     * @psalm-suppress PossiblyUnusedReturnValue PDO callers often ignore this bool
30     */
31    public function rollBack(): bool;
32}