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
<?php | |
trait Getters | |
{ | |
/** | |
* calls Class::$name() | |
* | |
* @param string $name the name of a requested property | |
* @return mixed the result | |
*/ |
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
<?php | |
/** | |
* Basic Logger Class which handles the setting and retrieving of captured arguments | |
*/ | |
class Log | |
{ | |
/** | |
* @var array | |
*/ | |
private static $environment = array(); |