- Database should support Mysqli
- Namespaces
- Full PSR-0, PSR-4 support by default
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 1 General | |
| 1.1. About Kohana [1 page] | |
| - On this page we talk a little bit about kohana, what it stands for, etc. | |
| - server requirements | |
| - kohana license | |
| - link to forum, irc channel, stackoverflow, etc. | |
| 1.2. Change Log [1 page] | |
| - maybe a redmine dump with the latest bugfix, features, etc. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // --== GOOD ==-- | |
| class SomeClass | |
| { | |
| protected $_db = null; | |
| public function __construct(Database $db) | |
| { | |
| $this->_db = $db; | |
| } |
NewerOlder