Skip to content

Commit e0b4586

Browse files
committed
Apply fixes from StyleCI
1 parent d53f6b5 commit e0b4586

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

src/Page.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -448,7 +448,7 @@ private function waitForReloadGenerator($eventName, $loaderId)
448448

449449
yield $delay;
450450

451-
// else if frame has still the previous loader, wait for the new one
451+
// else if frame has still the previous loader, wait for the new one
452452
} else {
453453
yield $delay;
454454
}

src/PageUtils/PageNavigation.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -171,16 +171,16 @@ private function navigationComplete($eventName)
171171
if ($this->page->hasLifecycleEvent($eventName)) {
172172
return true;
173173

174-
// or else just wait for the new event to trigger
174+
// or else just wait for the new event to trigger
175175
} else {
176176
yield $delay;
177177
}
178178

179-
// else if frame has still the previous loader, wait for the new one
179+
// else if frame has still the previous loader, wait for the new one
180180
} elseif ($this->frame->getLatestLoaderId() == $this->previousLoaderId) {
181181
yield $delay;
182182

183-
// else if a new loader is present that means that a new navigation started
183+
// else if a new loader is present that means that a new navigation started
184184
} else {
185185
// if strict then throw or else replace the old navigation with the new one
186186
if ($this->strict) {

0 commit comments

Comments
 (0)