We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent df4b7c6 commit 39903e6Copy full SHA for 39903e6
tests/system/View/TableTest.php
@@ -822,7 +822,7 @@ public static function orderedColumnUsecases(): iterable
822
*/
823
public function testGenerateTableWithHeadingContainFieldNamedData(): void
824
{
825
- $table_template = [
+ $tableTemplate = [
826
'table_open' => '<table border="1" cellpadding="2" cellspacing="1">',
827
828
'thead_open' => '<thead>',
@@ -857,7 +857,7 @@ public function testGenerateTableWithHeadingContainFieldNamedData(): void
857
'table_close' => '</table>',
858
];
859
860
- $table = new \CodeIgniter\View\Table($table_template);
+ $table = new Table($tableTemplate);
861
$table->setHeading([
862
'codigo' => 'Codigo Orçamento',
863
'data' => 'Data do Orçamento',
0 commit comments