Revision #2 was created by CTala on May 6, 2014, 4:50:09 PM.
Fixing the code
Content
[...]
I am new with name spaces, so for me was a little difficult to understand it at the beginning.
In this case I was extending DbManager for it to be compatible with the information that I had from Yii1.0 for the Authorization. I needed this to be working in the same database that I had my old application, as I fully upgrade it.
The following is the result of a question asked in the forum in the followin link : [Your text to link hereWiki Post...](http://www.yiiframework.com/forum/index.php/topic/53853-including-my-own-folder-of-components-in-the-namespace/ "Wiki Post")
[list=1]
[*]Create the folder
[...]
The class that I created includes the namespace app\components on it.
[code]
```php
<?php
[...]
* @author ctala
*/
class MyDbManager extends DbManager {.
[/code]```
[*]Calling the Class
[...]
Now, in the ocnfiguration file I can call the class without troubles.