dutchiexl / BehatHtmlFormatterPlugin

This is a behat plugin to generate HTML reports
MIT License
112 stars 116 forks source link

Fix for depricated file_exists on null in PHP 8 #133

Closed danielangelov91 closed 10 months ago

danielangelov91 commented 1 year ago

Please replace: https://github.com/dutchiexl/BehatHtmlFormatterPlugin/blob/ecc2d56d9e9dfd3af4fbf469ed2d0c3499f8d650/src/Classes/Scenario.php#L205 With: if (!isset($this->screenshotPath) || !file_exists($this->screenshotPath)) { return false; }

PurHur commented 10 months ago

Done