diff --git a/src/ResultSet/RowPrototypeInterface.php b/src/ResultSet/RowPrototypeInterface.php index 517628d1..64734d64 100644 --- a/src/ResultSet/RowPrototypeInterface.php +++ b/src/ResultSet/RowPrototypeInterface.php @@ -17,4 +17,9 @@ interface RowPrototypeInterface * Exchange the current data for the provided array. */ public function exchangeArray(array $array): array; + + /** + * Current data as an array and match current RowGateway implementations. + */ + public function toArray(): array; }