Total Complexity | 1 |
Total Lines | 47 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
20 | trait DbDataSampleTrait |
||
21 | { |
||
22 | // Properties |
||
23 | // ========================================================================= |
||
24 | |||
25 | /** |
||
26 | * @var int |
||
27 | */ |
||
28 | public $requestId; |
||
29 | |||
30 | /** |
||
31 | * @var int |
||
32 | */ |
||
33 | public $siteId; |
||
34 | |||
35 | /** |
||
36 | * @var string the title of the document (if any) |
||
37 | */ |
||
38 | public $title; |
||
39 | |||
40 | /** |
||
41 | * @var string u - the URL of the User Timing sample |
||
42 | */ |
||
43 | public $url; |
||
44 | |||
45 | /** |
||
46 | * @var string the query string |
||
47 | */ |
||
48 | public $queryString; |
||
49 | |||
50 | // Public Methods |
||
51 | // ========================================================================= |
||
52 | |||
53 | /** |
||
54 | * @inheritdoc |
||
55 | */ |
||
56 | public function rules() |
||
70 |