Files
yii2/framework/views/_foreignTables.php
Robert Korulczyk 5a8c3d537b Enable phpdoc_summary rule in php-cs-fixer config (#14675)
* Enable `phpdoc_summary` rule in php-cs-fixer config.

* Fix case in "PHPDoc".
2017-08-21 11:19:35 +02:00

15 lines
305 B
PHP

<?php
/**
* Creates a call for the method `yii\db\Migration::createTable()`.
*/
/* @var $foreignKeys array the foreign keys */
if (!empty($foreignKeys)):?>
* Has foreign keys to the tables:
*
<?php foreach ($foreignKeys as $fkData): ?>
* - `<?= $fkData['relatedTable'] ?>`
<?php endforeach;
endif;