PHP type casting

This commit is contained in:
Alexander Mohorev
2014-10-25 15:30:03 +03:00
parent bfb62167f3
commit bb8550886e
27 changed files with 43 additions and 43 deletions

View File

@ -150,7 +150,7 @@ class QueryBuilder extends \yii\db\QueryBuilder
*/
public function checkIntegrity($check = true, $schema = '', $table = '')
{
return 'PRAGMA foreign_keys='.(int)$check;
return 'PRAGMA foreign_keys='.(int) $check;
}
/**