small suggestion:
in line 139 you could use
foreach (array_keys($query) as $table) {
instead of
foreach ($query as $table => $columns) {
This avoids the unused variable :)
Have a nice day!
Log in to post a comment.