Skip to content

Commit

Permalink
Fix mistyped class name in doc block.
Browse files Browse the repository at this point in the history
  • Loading branch information
markstory committed Oct 27, 2013
1 parent 03b4181 commit 293fb42
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Cake/Database/ConnectionManager.php
Expand Up @@ -94,7 +94,7 @@ public static function config($key, $config = null) {
* @param string $from The connection to add an alias to.
* @param string $to The alias to create. $from should return when loaded with get().
* @return void
* @throws Cake\Error\MissingDataSourceConfigException When aliasing a connection that does not exist.
* @throws Cake\Error\MissingDatasourceConfigException When aliasing a connection that does not exist.
*/
public static function alias($from, $to) {
if (empty(static::$_config[$to]) && empty(static::$_config[$from])) {
Expand Down

0 comments on commit 293fb42

Please sign in to comment.