Skip to content

Instantly share code, notes, and snippets.

View feketegy's full-sized avatar
💻
The touch type baron.

George feketegy

💻
The touch type baron.
View GitHub Profile
@feketegy
feketegy / toc
Last active December 21, 2015 20:59
Kohana Documentation TOC
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.
// --== GOOD ==--
class SomeClass
{
protected $_db = null;
public function __construct(Database $db)
{
$this->_db = $db;
}