We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1ab492b commit 7f14c9eCopy full SHA for 7f14c9e
composer.json
@@ -14,7 +14,7 @@
14
"prefer-stable": true,
15
"minimum-stability": "dev",
16
"require": {
17
- "php": ">=8.1",
+ "php": ">=8.1 <8.4",
18
"ext-dom": "*",
19
"byjg/xmlutil": "^5.0",
20
"byjg/serializer": "^5.0"
src/AnyDataset.php
@@ -238,8 +238,9 @@ public function removeRow(int|Row $row = null): void
238
}
239
if ($row instanceof Row) {
240
$iPos = 0;
241
+ $rowArr = $row->toArray();
242
foreach ($this->collection as $sr) {
- if ($sr->toArray() == $row->toArray()) {
243
+ if ($sr->toArray() == $rowArr) {
244
$this->removeRow($iPos);
245
break;
246
0 commit comments