File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -950,7 +950,7 @@ public static function handleQuery($query): void
950950 " AND `db_name` = ' " . $ dbi ->escapeString ($ dbname ?? '' ) . "' " .
951951 " AND `table_name` = ' "
952952 . $ dbi ->escapeString ($ result ['tablename ' ]) . "' " .
953- " AND `version` = ' " . $ dbi ->escapeString ($ version ?? '' ) . "' " ;
953+ " AND `version` = ' " . $ dbi ->escapeString (( string ) $ version ) . "' " ;
954954
955955 $ dbi ->queryAsControlUser ($ sqlQuery );
956956 }
Original file line number Diff line number Diff line change @@ -8370,11 +8370,6 @@ parameters:
83708370 count : 1
83718371 path : libraries/classes/Tracker.php
83728372
8373- -
8374- message : " #^Variable \\ $version on left side of \\ ?\\ ? always exists and is not nullable\\ .$#"
8375- count : 1
8376- path : libraries/classes/Tracker.php
8377-
83788373 -
83798374 message : " #^Cannot access offset 'COLUMNS' on mixed\\ .$#"
83808375 count : 1
Original file line number Diff line number Diff line change 1341213412 </UnevaluatedCode>
1341313413 </file>
1341413414 <file src="libraries/classes/Tracker.php">
13415- <DocblockTypeContradiction occurrences="4">
13416- <code>''</code>
13415+ <DocblockTypeContradiction occurrences="3">
1341713416 <code>null</code>
1341813417 <code>null</code>
1341913418 <code>null</code>
1346313462 <code>mb_strpos($logEntry, "\n")</code>
1346413463 <code>mb_strpos($logEntry, "\n")</code>
1346513464 </PossiblyFalseOperand>
13466- <PossiblyInvalidArgument occurrences="1">
13467- <code>$version ?? ''</code>
13468- </PossiblyInvalidArgument>
1346913465 <PossiblyInvalidPropertyFetch occurrences="4">
1347013466 <code>$statement->body[2]->value</code>
1347113467 <code>$statement->body[3]->value</code>
1348113477 <RedundantCondition occurrences="1">
1348213478 <code>$dbname</code>
1348313479 </RedundantCondition>
13484- <RedundantConditionGivenDocblockType occurrences="4 ">
13480+ <RedundantConditionGivenDocblockType occurrences="3 ">
1348513481 <code>$statement->name !== null</code>
1348613482 <code>$statement->name !== null</code>
13487- <code>$version</code>
1348813483 <code>isset($statement->options)</code>
1348913484 </RedundantConditionGivenDocblockType>
1349013485 <TypeDoesNotContainNull occurrences="1">
Original file line number Diff line number Diff line change @@ -65,7 +65,7 @@ public function testCreateTable(): void
6565 $ column_dropdown_details = [
6666 'field_0_6 ' => 'UNSIGNED ' ,
6767 'field_1_2 ' => 'VARCHAR ' ,
68- 'field_1_5 ' => 'utf8_general_ci ' ,
68+ 'field_1_5 ' => 'utf8mb4_general_ci ' ,
6969 'field_1_4 ' => 'As defined: ' ,
7070 ];
7171
@@ -83,7 +83,7 @@ public function testCreateTable(): void
8383 $ this ->moveto ($ ele );
8484 // post
8585 $ ele ->click ();
86- $ this ->waitForElement ('cssSelector ' , 'li.last.table ' );
86+ $ this ->waitForElement ('cssSelector ' , 'li.last.nav_node_table ' );
8787
8888 $ this ->waitAjax ();
8989
@@ -162,7 +162,7 @@ private function tableStructureAssertions(): void
162162 );
163163
164164 $ this ->assertEquals (
165- 'utf8_general_ci ' ,
165+ 'utf8mb4_general_ci ' ,
166166 $ this ->getCellByTableId ('tablestructure ' , 2 , 5 )
167167 );
168168
You can’t perform that action at this time.
0 commit comments