Skip to content

Commit a23245e

Browse files
authored
fix EntryQueryOptions (#1619)
1 parent 5882605 commit a23245e

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

src/Storage/EntryQueryOptions.php

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ class EntryQueryOptions
3737
/**
3838
* The list of UUIDs of entries tor retrieve.
3939
*
40-
* @var mixed
40+
* @var array|null
4141
*/
4242
public $uuids;
4343

@@ -68,7 +68,7 @@ public static function fromRequest(Request $request)
6868
/**
6969
* Create new entry query options for the given batch ID.
7070
*
71-
* @param string $batchId
71+
* @param string|null $batchId
7272
* @return static
7373
*/
7474
public static function forBatchId(?string $batchId)
@@ -79,7 +79,7 @@ public static function forBatchId(?string $batchId)
7979
/**
8080
* Set the batch ID for the query.
8181
*
82-
* @param string $batchId
82+
* @param string|null $batchId
8383
* @return $this
8484
*/
8585
public function batchId(?string $batchId)
@@ -90,9 +90,9 @@ public function batchId(?string $batchId)
9090
}
9191

9292
/**
93-
* Set the list of UUIDs of entries tor retrieve.
93+
* Set the list of UUIDs of entries to retrieve.
9494
*
95-
* @param array $uuids
95+
* @param array|null $uuids
9696
* @return $this
9797
*/
9898
public function uuids(?array $uuids)

0 commit comments

Comments
 (0)