Skip to content

Commit 82248a0

Browse files
Fix typo (solariumphp#854)
1 parent 94c5934 commit 82248a0

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

src/Plugin/CustomizeRequest/CustomizeRequest.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -203,7 +203,7 @@ public function setCustomizations(array $customizations): self
203203
*/
204204
public function postCreateRequest($event): self
205205
{
206-
// We need to accept event proxies or decoraters.
206+
// We need to accept event proxies or decorators.
207207
/* @var PostCreateRequest $event */
208208
$request = $event->getRequest();
209209
foreach ($this->getCustomizations() as $key => $customization) {

src/Plugin/Loadbalancer/Loadbalancer.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -412,7 +412,7 @@ public function getLastEndpoint(): ?string
412412
*/
413413
public function preCreateRequest($event): self
414414
{
415-
// We need to accept event proxies or decoraters.
415+
// We need to accept event proxies or decorators.
416416
/* @var PreCreateRequest $event */
417417
$this->queryType = $event->getQuery()->getType();
418418

@@ -428,7 +428,7 @@ public function preCreateRequest($event): self
428428
*/
429429
public function preExecuteRequest($event): self
430430
{
431-
// We need to accept event proxies or decoraters.
431+
// We need to accept event proxies or decorators.
432432
/* @var PreExecuteRequest $event */
433433
$adapter = $this->client->getAdapter();
434434

src/Plugin/PostBigRequest.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ public function getMaxQueryStringLength(): ?int
6868
*/
6969
public function preExecuteRequest($event): self
7070
{
71-
// We need to accept event proxies or decoraters.
71+
// We need to accept event proxies or decorators.
7272
/* @var PreExecuteRequest $event */
7373
$request = $event->getRequest();
7474
$queryString = $request->getQueryString();

0 commit comments

Comments
 (0)