lajax / yii2-translate-manager

Translation Manager
MIT License
227 stars 90 forks source link

fix: PHP7 incompatibility in Database Scanner. #58

Closed moltam closed 8 years ago

moltam commented 8 years ago

With PHP7 there is an 'Array to string conversion' error in the Database Scanner. $foo->$bar['baz'] is interpreted differently in PHP5 and PHP7 ($foo->{$bar['baz']} -> ($foo->$bar)['baz']).

This PR fixes this.

lajax commented 8 years ago

Thanks!