Skip to content

Commit

Permalink
Merge pull request #38 from terminus-plugin-project/bug/php-fixes
Browse files Browse the repository at this point in the history
Fixing deprecated string usage
  • Loading branch information
sean-e-dietrich committed Sep 15, 2023
2 parents a65af26 + 299a165 commit 60eb849
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/Apps/SequelProApp.php
Original file line number Diff line number Diff line change
Expand Up @@ -60,15 +60,15 @@ private function getSequelProOpenFile() {
<key>database</key>
<string>{$mysql_database}</string>
<key>host</key>
<string>${mysql_host}</string>
<string>{$mysql_host}</string>
<key>name</key>
<string>${label}</string>
<string>{$label}</string>
<key>user</key>
<string>${mysql_username}</string>
<string>{$mysql_username}</string>
<key>password</key>
<string>${mysql_password}</string>
<string>{$mysql_password}</string>
<key>port</key>
<integer>${mysql_port}</integer>
<integer>{$mysql_port}</integer>
<key>rdbms_type</key>
<string>mysql</string>
</dict>
Expand Down

0 comments on commit 60eb849

Please sign in to comment.