File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -129,7 +129,7 @@ public function getTime(): float
129129 public function normalizeRow (array $ row ): array
130130 {
131131 if ($ this ->types === null ) {
132- $ this ->types = ( array ) $ this ->connection ->getSupplementalDriver ()->getColumnTypes ($ this ->pdoStatement );
132+ $ this ->types = $ this ->connection ->getSupplementalDriver ()->getColumnTypes ($ this ->pdoStatement );
133133 }
134134
135135 foreach ($ this ->types as $ key => $ type ) {
Original file line number Diff line number Diff line change @@ -552,7 +552,7 @@ protected function execute(): void
552552 foreach ($ result ->getPdoStatement () as $ key => $ row ) {
553553 $ row = $ this ->createRow ($ result ->normalizeRow ($ row ));
554554 $ primary = $ row ->getSignature (false );
555- $ usedPrimary = $ usedPrimary && ( string ) $ primary !== '' ;
555+ $ usedPrimary = $ usedPrimary && $ primary !== '' ;
556556 $ this ->rows [$ usedPrimary ? $ primary : $ key ] = $ row ;
557557 }
558558 $ this ->data = $ this ->rows ;
You can’t perform that action at this time.
0 commit comments