sql = $sql; $this->params = $params; $this->start = $start; $this->stack = $stack; } public function end($time) { $this->end = $time; } /** * @return array */ public function getParams() { return $this->params; } /** * @return string */ public function getSql() { return $this->sql; } /** * @return float */ public function getStart() { return $this->start; } /** * @return float */ public function getDuration() { return $this->end - $this->start; } public function getStartTime() { return $this->start; } public function getStacktrace() { return $this->stack; } } broker'>3rdparty/stable29/sabre-dav-itip-broker Nextcloud server, a safe home for all your data: https://github.com/nextcloud/serverwww-data
aboutsummaryrefslogtreecommitdiffstats
path: root/CONTRIBUTING.md
blob: 66d54c61e984b08d49249070dfc7c6765f8b95db (plain)
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