Skip to content

Commit a604777

Browse files
committed
Refactored default match condition
1 parent 4321f4f commit a604777

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/TableGateway/TableGateway.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ public function __construct(
3333
$features instanceof Feature\FeatureSet => $features,
3434
$features instanceof Feature\AbstractFeature => new Feature\FeatureSet([$features]),
3535
is_array($features) => new Feature\FeatureSet($features),
36-
default => new Feature\FeatureSet(),
36+
default => $features,
3737
};
3838

3939
$this->resultSetPrototype = $resultSetPrototype ?? new ResultSet();

0 commit comments

Comments
 (0)