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 | |
if ( $app['debug'] ) { | |
$logger = new Doctrine\DBAL\Logging\DebugStack(); | |
$app['db.config']->setSQLLogger($logger); | |
$app->error(function(\Exception $e, $code) use ($app, $logger) { | |
if ( $e instanceof PDOException and count($logger->queries) ) { | |
// We want to log the query as an ERROR for PDO exceptions! | |
$query = array_pop($logger->queries); | |
$app['monolog']->err($query['sql'], 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
var Suteki = Suteki || {}; | |
Suteki.new_eventBus = (function(){ | |
var self = {}; | |
var subscriptions = {}; | |
var unsubscribeTokens = []; | |
var subscriptionPointers = []; |
NewerOlder