1 | <?php |
||
9 | class CallerPosition |
||
10 | { |
||
11 | |||
12 | /** |
||
13 | * @var |
||
14 | */ |
||
15 | public $file; |
||
16 | /** |
||
17 | * @var |
||
18 | */ |
||
19 | public $line; |
||
20 | |||
21 | /** |
||
22 | * CallerPosition constructor. |
||
23 | * |
||
24 | * @param $file |
||
25 | * @param $line |
||
26 | */ |
||
27 | public function __construct($file, $line) |
||
32 | |||
33 | /** |
||
34 | * @return mixed |
||
35 | */ |
||
36 | public function getFile() |
||
40 | |||
41 | /** |
||
42 | * @return mixed |
||
43 | */ |
||
44 | public function getLine() |
||
48 | |||
49 | } |