Adding support to syntax highlighting for custom extensions, fixes #34. Thanks @attiks

This commit is contained in:
Klaus Silveira
2012-06-07 00:55:56 -03:00
parent ab14e90cdd
commit 8ac31cdc93
3 changed files with 19 additions and 3 deletions

View File

@@ -16,7 +16,7 @@ class UtilsServiceProvider implements ServiceProviderInterface
public function register(Application $app)
{
$app['utils'] = function () use ($app) {
return new Utils;
return new Utils($app);
};
}
}