@@ -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; |
@@ -31,6 +31,7 @@ |
||
31 | 31 | |
32 | 32 | /** |
33 | 33 | * Saves the items to a file and returns the file contents |
34 | + * @param string $file_path |
|
34 | 35 | */ |
35 | 36 | public function save( $file_path, $allow_empty = true ) { |
36 | 37 |
@@ -10,6 +10,10 @@ |
||
10 | 10 | public $message; |
11 | 11 | public $old_declaration; |
12 | 12 | |
13 | + /** |
|
14 | + * @param string $type |
|
15 | + * @param string $message |
|
16 | + */ |
|
13 | 17 | function __construct( $type, $path, $line, $message, $old_declaration ) { |
14 | 18 | $this->type = $type; |
15 | 19 | $this->path = $path; |
@@ -11,6 +11,9 @@ |
||
11 | 11 | private $declarations; |
12 | 12 | private $current_relative_path; |
13 | 13 | |
14 | + /** |
|
15 | + * @param $declarations |
|
16 | + */ |
|
14 | 17 | public function __construct( $current_relative_path, $declarations ) { |
15 | 18 | $this->current_relative_path = $current_relative_path; |
16 | 19 | $this->declarations = $declarations; |
@@ -14,6 +14,9 @@ discard block |
||
14 | 14 | private $product_name; |
15 | 15 | private $connection; |
16 | 16 | |
17 | + /** |
|
18 | + * @param Connection\Manager $connection |
|
19 | + */ |
|
17 | 20 | function __construct( $product_name = 'jetpack', $connection = null ) { |
18 | 21 | $this->product_name = $product_name; |
19 | 22 | $this->connection = $connection; |
@@ -60,7 +63,6 @@ discard block |
||
60 | 63 | /** |
61 | 64 | * Record an event in Tracks - this is the preferred way to record events from PHP. |
62 | 65 | * |
63 | - * @param mixed $identity username, user_id, or WP_user object |
|
64 | 66 | * @param string $event_name The name of the event |
65 | 67 | * @param array $properties Custom properties to send with the event |
66 | 68 | * @param int $event_timestamp_millis The time in millis since 1970-01-01 00:00:00 when the event occurred |