Skip to content

Commit

Permalink
Uncommenting console bootstrap configuration, since it should execute…
Browse files Browse the repository at this point in the history
… automatically if included.
  • Loading branch information
nateabele committed Feb 15, 2010
1 parent 194f94e commit a832eb1
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions app/config/bootstrap/console.php
Expand Up @@ -6,14 +6,14 @@
* @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);
// });
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);
});


?>

0 comments on commit a832eb1

Please sign in to comment.