Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/phpmyadmin/phpmyadmin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMaurício Meneghini Fauth <mauricio@fauth.dev>2020-08-24 02:36:44 +0300
committerMaurício Meneghini Fauth <mauricio@fauth.dev>2020-08-24 02:36:44 +0300
commitccbcc08c259c04e07cbeda8f268340cffd992aa9 (patch)
treeb5488af7aaa910a19cbd4043af6bd9cade523e5f /test/selenium
parent7966f5bde5231a7b6a2e034166255f41ce2965d0 (diff)
Fix some PHPStan errors
Signed-off-by: Maurício Meneghini Fauth <mauricio@fauth.dev>
Diffstat (limited to 'test/selenium')
-rw-r--r--test/selenium/Database/QueryByExampleTest.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/selenium/Database/QueryByExampleTest.php b/test/selenium/Database/QueryByExampleTest.php
index dd2f3d6743..746cda8927 100644
--- a/test/selenium/Database/QueryByExampleTest.php
+++ b/test/selenium/Database/QueryByExampleTest.php
@@ -113,7 +113,7 @@ class QueryByExampleTest extends TestBase
. "\nFROM `test_table`"
. "\nWHERE ((`test_table`.`id` > 1) AND (`test_table`.`val` < 6))"
. "\nORDER BY `test_table`.`val` ASC, `test_table`.`id` DESC";
- $actual = trim($this->waitForElement('id', 'textSqlquery')->getAttribute('value'));
+ $actual = trim((string) $this->waitForElement('id', 'textSqlquery')->getAttribute('value'));
/* Compare generated query */
$this->assertEquals(