summaryrefslogtreecommitdiffstats
path: root/config/bootstrap/console.php
blob: e47e2c0b6c5d5335e91b37a2be13bc510051489b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<?php
/**
 * Lithium: the most rad php framework
 *
 * @copyright     Copyright 2010, Union of RAD (http://union-of-rad.org)
 * @license       http://opensource.org/licenses/bsd-license.php The BSD License
 */

use lithium\console\Dispatcher;

Dispatcher::applyFilter('_call', function($self, $params, $chain) {
	$params['callable']->response->styles(array(
		'heading' => '\033[1;30;46m'
	));
	return $chain->next($self, $params, $chain);
});


?>