blob: 50bd50e340552b46e1b5688583935519350b68e9 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
class Box<T> {
// ^ @type
// ^ @type
protected T $data;
// ^ @keyword.modifier
// ^ @type
public function __construct(T $data) {
// ^ @type
// ^ @variable.parameter
// ^ @keyword.function
// ^ @keyword.modifier
// ^ @function.method
$this->data = $data;
}
public function getData(): T {
// ^ @function.method
// ^ @keyword.modifier
return $this->data;
// ^ @operator
// ^ @variable.builtin
}
}
|