Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(docs): bigtable typehint for exactMatch #5742

Merged
merged 1 commit into from
Jan 3, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Bigtable/src/Filter/Builder/FamilyFilter.php
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ public function regex($value)
* $familyFilter = $builder->exactMatch('cf1');
* ```
*
* @param string $value An exact value to match.
* @param array|string $value An exact value to match.
* @return SimpleFilter
* @throws \InvalidArgumentException When the provided value is not an array
* or string.
Expand Down
2 changes: 1 addition & 1 deletion Bigtable/src/Filter/Builder/KeyFilter.php
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ public function regex($value)
* $keyFilter = $builder->exactMatch('r1');
* ```
*
* @param string $value An exact value.
* @param array|string $value An exact value.
* @return SimpleFilter
* @throws \InvalidArgumentException When the provided value is not an array
* or string.
Expand Down
2 changes: 1 addition & 1 deletion Bigtable/src/Filter/Builder/QualifierFilter.php
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ public function regex($value)
* $qualifierFilter = $builder->exactMatch('cq1');
* ```
*
* @param string $value An exact value.
* @param array|string $value An exact value.
* @return SimpleFilter
* @throws \InvalidArgumentException When the provided value is not an array
* or string.
Expand Down
2 changes: 1 addition & 1 deletion Bigtable/src/Filter/Builder/ValueFilter.php
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ public function regex($value)
* $valueFilter = $builder->exactMatch('value1');
* ```
*
* @param string $value An exact value to match.
* @param array|string $value An exact value to match.
* @return SimpleFilter
* @throws \InvalidArgumentException When the provided value is not an array
* or string.
Expand Down