| 1234567891011121314 | <?php foreach ($fields as $field): ?>        $this->addColumn('<?=            $table        ?>', '<?=            $field['property']        ?>', $this-><?=            $field['decorators']        ?>);<?php endforeach;echo $this->render('_addForeignKeys', [    'table' => $table,    'foreignKeys' => $foreignKeys,]);
 |