mirror of
https://github.com/standardebooks/web.git
synced 2025-07-14 10:31:59 -04:00
More type fixes
This commit is contained in:
parent
a5a19f947f
commit
99b5fd66f2
17 changed files with 103 additions and 122 deletions
|
@ -224,5 +224,7 @@ catch(Exception $ex){
|
|||
throw $ex;
|
||||
}
|
||||
finally{
|
||||
// `$driver` may be unintialized if we ctrl + c during Selenium initialization.
|
||||
/** @phpstan-ignore nullsafe.neverNull */
|
||||
$driver?->quit();
|
||||
}
|
||||
|
|
|
@ -325,5 +325,7 @@ catch(Exception $ex){
|
|||
throw $ex;
|
||||
}
|
||||
finally{
|
||||
// `$driver` may be unintialized if we ctrl + c during Selenium initialization.
|
||||
/** @phpstan-ignore nullsafe.neverNull */
|
||||
$driver?->quit();
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue