@@ -33,7 +33,7 @@ final class SearchPlaceIndexForTextSummary
3333 *
3434 * @var float[]|null
3535 */
36- private $ filterBbox ;
36+ private $ filterBBox ;
3737
3838 /**
3939 * Contains the optional country filter specified in the request.
@@ -56,7 +56,7 @@ final class SearchPlaceIndexForTextSummary
5656 *
5757 * @var float[]|null
5858 */
59- private $ resultBbox ;
59+ private $ resultBBox ;
6060
6161 /**
6262 * The geospatial data provider attached to the place index resource specified in the request. Values can be one of the
@@ -108,10 +108,10 @@ public function __construct(array $input)
108108 {
109109 $ this ->text = $ input ['Text ' ] ?? $ this ->throwException (new InvalidArgument ('Missing required field "Text". ' ));
110110 $ this ->biasPosition = $ input ['BiasPosition ' ] ?? null ;
111- $ this ->filterBbox = $ input ['FilterBBox ' ] ?? null ;
111+ $ this ->filterBBox = $ input ['FilterBBox ' ] ?? null ;
112112 $ this ->filterCountries = $ input ['FilterCountries ' ] ?? null ;
113113 $ this ->maxResults = $ input ['MaxResults ' ] ?? null ;
114- $ this ->resultBbox = $ input ['ResultBBox ' ] ?? null ;
114+ $ this ->resultBBox = $ input ['ResultBBox ' ] ?? null ;
115115 $ this ->dataSource = $ input ['DataSource ' ] ?? $ this ->throwException (new InvalidArgument ('Missing required field "DataSource". ' ));
116116 $ this ->language = $ input ['Language ' ] ?? null ;
117117 $ this ->filterCategories = $ input ['FilterCategories ' ] ?? null ;
@@ -151,9 +151,9 @@ public function getDataSource(): string
151151 /**
152152 * @return float[]
153153 */
154- public function getFilterBbox (): array
154+ public function getFilterBBox (): array
155155 {
156- return $ this ->filterBbox ?? [];
156+ return $ this ->filterBBox ?? [];
157157 }
158158
159159 /**
@@ -185,9 +185,9 @@ public function getMaxResults(): ?int
185185 /**
186186 * @return float[]
187187 */
188- public function getResultBbox (): array
188+ public function getResultBBox (): array
189189 {
190- return $ this ->resultBbox ?? [];
190+ return $ this ->resultBBox ?? [];
191191 }
192192
193193 public function getText (): string
0 commit comments