This file contains 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
<? | |
/** | |
* Class ConsoleLogRoute | |
* Console log route. Output log messages into console | |
* @package app\components\console | |
*/ | |
class ConsoleLogRoute extends \CLogRoute { | |
const LEVEL_CONSOLE='console'; | |
/** |
This file contains 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
<? | |
/** | |
* Object do same as raw array in php(contract with ArrayObject): | |
* $a[][]='a'; | |
* $a['b'][]='c'; | |
* $a['b'][][]='d'; | |
*/ | |
class ProperObjectArray implements \ArrayAccess, \Countable,\IteratorAggregate{ | |
protected $_array=[]; |
This file contains 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
package mysql.common; | |
/** | |
* ... | |
* @author Ekstazi | |
*/ | |
/** | |
* @todo | |
*/ | |
class Callbacks<T> |