More type fixes

This commit is contained in:
Alex Cabal 2025-02-26 15:11:36 -06:00
parent a5a19f947f
commit 99b5fd66f2
17 changed files with 103 additions and 122 deletions

View file

@ -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();
}

View file

@ -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();
}