Renamed TDF attribute rw to access

This commit is contained in:
Nav
2024-03-14 23:59:15 +00:00
parent 289d1cd3b4
commit df0e74ea74
262 changed files with 61601 additions and 61601 deletions

View File

@@ -143,7 +143,7 @@ class FromXmlService
$this->stringService->tryStringToInt($attributes['start'] ?? null),
$this->stringService->tryStringToInt($attributes['size'] ?? null),
$this->stringService->tryStringToInt($attributes['page-size'] ?? null),
$attributes['rw'] ?? null,
$attributes['access'] ?? null,
[]
);
@@ -278,7 +278,7 @@ class FromXmlService
$this->stringService->tryStringToInt($attributes['offset'] ?? null),
$this->stringService->tryStringToInt($attributes['size'] ?? null),
$this->stringService->tryStringToInt($attributes['initial-value'] ?? null),
$attributes['rw'] ?? null,
$attributes['access'] ?? null,
isset($attributes['alternative']) ? trim($attributes['alternative']) === 'true' : null,
[]
);
@@ -305,7 +305,7 @@ class FromXmlService
$attributes['name'] ?? null,
$attributes['description'] ?? null,
$this->stringService->tryStringToInt($attributes['mask'] ?? null),
$attributes['rw'] ?? null
$attributes['access'] ?? null
);
}