mirror of
https://github.com/BookStackApp/BookStack.git
synced 2025-07-30 04:23:11 +03:00
Updated app to PHP7.3 min supported version, For php8 support
- Updated remaining dependancies - Upped min versions used - Updated GH actions to drop 7.2 and include 8.0 - Updated phpunit & tests to 9.x
This commit is contained in:
@ -119,7 +119,7 @@ abstract class BrowserKitTest extends TestCase
|
||||
*/
|
||||
protected function seeInNthElement($element, $position, $text, $negate = false)
|
||||
{
|
||||
$method = $negate ? 'assertNotRegExp' : 'assertRegExp';
|
||||
$method = $negate ? 'assertDoesNotMatchRegularExpression' : 'assertMatchesRegularExpression';
|
||||
|
||||
$rawPattern = preg_quote($text, '/');
|
||||
|
||||
|
Reference in New Issue
Block a user