@@ -9,6 +9,9 @@ |
||
9 | 9 | public $declaration; |
10 | 10 | public $invocation_root; |
11 | 11 | |
12 | + /** |
|
13 | + * @param string $invocation_root |
|
14 | + */ |
|
12 | 15 | function __construct( $invocation, $declaration, $invocation_root = null ) { |
13 | 16 | $this->invocation = $invocation; |
14 | 17 | $this->declaration = $declaration; |
@@ -15,6 +15,9 @@ |
||
15 | 15 | public $line; |
16 | 16 | public $func_name; |
17 | 17 | |
18 | + /** |
|
19 | + * @param string $func_name |
|
20 | + */ |
|
18 | 21 | public function __construct( $path, $line, $func_name ) { |
19 | 22 | $this->path = $path; |
20 | 23 | $this->line = $line; |
@@ -9,6 +9,9 @@ |
||
9 | 9 | private $invocations; |
10 | 10 | private $file_path; |
11 | 11 | |
12 | + /** |
|
13 | + * @param $invocations |
|
14 | + */ |
|
12 | 15 | public function __construct( $file_path, $invocations ) { |
13 | 16 | $this->file_path = $file_path; |
14 | 17 | $this->invocations = $invocations; |