Skip to content

Commit 06859ae

Browse files
authored
Fix camel case format for ignored case (#2000)
1 parent 665411f commit 06859ae

2 files changed

Lines changed: 5 additions & 4 deletions

File tree

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@
1616
- Apply new CodingStandard from latest php-cs-fixer.
1717
- AWS enhancement: Documentation updates.
1818
- Use a more stable sorting for the list of generated region metadata
19+
- change case of `getSizeEstimateRangeGb` method to `getSizeEstimateRangeGb`
1920

2021
## 3.8.0
2122

src/ValueObject/ItemCollectionMetrics.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ final class ItemCollectionMetrics
2626
*
2727
* @var float[]|null
2828
*/
29-
private $sizeEstimateRangeGb;
29+
private $sizeEstimateRangeGB;
3030

3131
/**
3232
* @param array{
@@ -37,7 +37,7 @@ final class ItemCollectionMetrics
3737
public function __construct(array $input)
3838
{
3939
$this->itemCollectionKey = isset($input['ItemCollectionKey']) ? array_map([AttributeValue::class, 'create'], $input['ItemCollectionKey']) : null;
40-
$this->sizeEstimateRangeGb = $input['SizeEstimateRangeGB'] ?? null;
40+
$this->sizeEstimateRangeGB = $input['SizeEstimateRangeGB'] ?? null;
4141
}
4242

4343
/**
@@ -62,8 +62,8 @@ public function getItemCollectionKey(): array
6262
/**
6363
* @return float[]
6464
*/
65-
public function getSizeEstimateRangeGb(): array
65+
public function getSizeEstimateRangeGB(): array
6666
{
67-
return $this->sizeEstimateRangeGb ?? [];
67+
return $this->sizeEstimateRangeGB ?? [];
6868
}
6969
}

0 commit comments

Comments
 (0)