We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent abf7549 commit f82c1c4Copy full SHA for f82c1c4
src/TableGateway/TableGateway.php
@@ -32,7 +32,8 @@ public function __construct(
32
/** @phpstan-ignore match.unhandled */
33
$this->featureSet = match (true) {
34
$features instanceof Feature\AbstractFeature => new Feature\FeatureSet([$features]),
35
- is_array($features) => new Feature\FeatureSet($features),
+ is_array($features) => new Feature\FeatureSet($features),
36
+ default => $features,
37
};
38
39
// result prototype
0 commit comments