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 | |
use Monolog\Logger; | |
use Monolog\Handler\AbstractProcessingHandler; | |
class PDOHandler extends AbstractProcessingHandler | |
{ | |
private $initialized = false; | |
private $pdo; | |
private $statement; |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
/** | |
* Simple javascript rules engine | |
* | |
* @author Bryan Elliott | |
* @link http://codemonkeybryan.com | |
* | |
* A RuleSet is essentially a simple list of voters. By executing the RuleSet, | |
* you iterate over the voters and obtain a done/fail event via jQuery's Deferred | |
* interface. | |
* |