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 | * Pop PHP Framework (http://www.popphp.org/) |
4 | * |
5 | * @link https://github.com/popphp/popphp-framework |
6 | * @author Nick Sagona, III <dev@nolainteractive.com> |
7 | * @copyright Copyright (c) 2009-2024 NOLA Interactive, LLC. (http://www.nolainteractive.com) |
8 | * @license http://www.popphp.org/license New BSD License |
9 | */ |
10 | |
11 | /** |
12 | * @namespace |
13 | */ |
14 | namespace Pop\Db\Adapter\Profiler; |
15 | |
16 | /** |
17 | * Db adapter profiler interface |
18 | * |
19 | * @category Pop |
20 | * @package Pop\Db |
21 | * @author Nick Sagona, III <dev@nolainteractive.com> |
22 | * @copyright Copyright (c) 2009-2024 NOLA Interactive, LLC. (http://www.nolainteractive.com) |
23 | * @license http://www.popphp.org/license New BSD License |
24 | * @version 6.5.0 |
25 | */ |
26 | interface ProfilerInterface |
27 | { |
28 | |
29 | /** |
30 | * Get start |
31 | * |
32 | * @return float|null |
33 | */ |
34 | public function getStart(): float|null; |
35 | |
36 | /** |
37 | * Finish profiler |
38 | * |
39 | * @return ProfilerInterface |
40 | */ |
41 | public function finish(): ProfilerInterface; |
42 | |
43 | /** |
44 | * Get end |
45 | * |
46 | * @return float|null |
47 | */ |
48 | public function getFinish(): float|null; |
49 | |
50 | /** |
51 | * Get elapsed time |
52 | * |
53 | * @return string|null |
54 | */ |
55 | public function getElapsed(): string|null; |
56 | |
57 | } |