Skip to content

Commit

Permalink
Add more classes in the rename classes task.
Browse files Browse the repository at this point in the history
A bunch of configure related classes changed in PR1577. Update the
upgrade shell for those.
  • Loading branch information
markstory committed Aug 31, 2013
1 parent ab83f42 commit c008812
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions lib/Cake/Console/Command/UpgradeShell.php
Expand Up @@ -129,6 +129,12 @@ protected function _renameClasses($path, $dryRun) {
'Cake\Network\Http\HttpSocket' => 'Cake\Network\Http\Client',
'HttpSocket' => 'Client',
'Cake\Model\ConnectionManager' => 'Cake\Database\ConnectionManager',
'Cake\Configure\ConfigReaderInterface' => 'Cake\Configure\ConfigEngineInterface',
'ConfigReaderInterface' => 'ConfigEngineInterface',
'Cake\Configure\PhpReader' => 'Cake\Configure\Engine\PhpConfig',
'PhpReader' => 'PhpConfig',
'Cake\Configure\IniReader' => 'Cake\Configure\Engine\IniConfig',
'IniReader' => 'IniConfig',
];
$contents = file_get_contents($path);
$contents = str_replace(
Expand Down

0 comments on commit c008812

Please sign in to comment.