Skip to content

Commit 3901ec1

Browse files
committed
More doc fixes.
1 parent 65d53ea commit 3901ec1

File tree

2 files changed

+8
-6
lines changed

2 files changed

+8
-6
lines changed

src/PEAR2/Net/RouterOS/Client.php

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -74,9 +74,10 @@ class Client
7474
protected $pendingRequestsCount = 0;
7575

7676
/**
77-
* @var array<string,Response> An array of responses that have not yet been
78-
* extracted or passed to a callback. Key is the tag of the request,
79-
* and the value is an array of associated responses.
77+
* @var array<string,Response[]> An array of responses that have not yet
78+
* been extracted or passed to a callback.
79+
* Key is the tag of the request, and the value is an array of
80+
* associated responses.
8081
*/
8182
protected $responseBuffer = array();
8283

src/PEAR2/Net/RouterOS/Util.php

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -963,15 +963,16 @@ public function count($mode = COUNT_NORMAL, Query $query = null)
963963
*
964964
* Gets all items in the current menu, using a print request.
965965
*
966-
* @param array<string,string|resource>|array<int,string> $args Additional
966+
* @param array<string,string|resource>|array<int,string> $args Additional
967967
* arguments to pass to the request.
968968
* Each array key is the name of the argument, and each array value is
969969
* the value of the argument to be passed.
970970
* Arguments without a value (i.e. empty arguments) can also be
971971
* specified using a numeric key, and the name of the argument as the
972972
* array value.
973-
* @param Query|null $query A query to filter items
974-
* by. NULL to get all items.
973+
* @param Query|null $query A query to
974+
* filter items by.
975+
* NULL to get all items.
975976
*
976977
* @return ResponseCollection|false A response collection with all
977978
* {@link Response::TYPE_DATA} responses. The collection will be empty

0 commit comments

Comments
 (0)