Item.php
1.24 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
<?php
namespace Phalcon\Db\Profiler {
/**
* Phalcon\Db\Profiler\Item
*
* This class identifies each profile in a Phalcon\Db\Profiler
*
*/
class Item {
protected $_sqlStatement;
protected $_initialTime;
protected $_finalTime;
/**
* Sets the SQL statement related to the profile
*
* @param string $sqlStatement
*/
public function setSQLStatement($sqlStatement){ }
/**
* Returns the SQL statement related to the profile
*
* @return string
*/
public function getSQLStatement(){ }
/**
* Sets the timestamp on when the profile started
*
* @param int $initialTime
*/
public function setInitialTime($initialTime){ }
/**
* Sets the timestamp on when the profile ended
*
* @param int $finalTime
*/
public function setFinalTime($finalTime){ }
/**
* Returns the initial time in milseconds on when the profile started
*
* @return double
*/
public function getInitialTime(){ }
/**
* Returns the initial time in milseconds on when the profile ended
*
* @return double
*/
public function getFinalTime(){ }
/**
* Returns the total time in seconds spent by the profile
*
* @return double
*/
public function getTotalElapsedSeconds(){ }
}
}