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 | |
3 | declare(strict_types=1); |
4 | |
5 | namespace PeServer\Core\Database; |
6 | |
7 | /** |
8 | * DB実装処理。 |
9 | */ |
10 | interface IDatabaseImplementation |
11 | { |
12 | #region function |
13 | |
14 | /** |
15 | * `like` のエスケープ処理。 |
16 | * |
17 | * @param string $value |
18 | * @return string |
19 | */ |
20 | public function escapeLike(string $value): string; |
21 | |
22 | /** |
23 | * バインド値のエスケープ処理。 |
24 | * |
25 | * @param mixed $value |
26 | * @return string |
27 | */ |
28 | public function escapeValue(mixed $value): string; |
29 | |
30 | #endregion |
31 | } |