Files
Phraseanet/lib/Alchemy/Phrasea/Core/Provider/ZippyServiceProvider.php
Romain Neutron 5e8e8f59d5 Use Zippy to zip
2014-02-24 16:25:59 +01:00

31 lines
613 B
PHP

<?php
/*
* This file is part of Phraseanet
*
* (c) 2005-2014 Alchemy
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Alchemy\Phrasea\Core\Provider;
use Alchemy\Zippy\Zippy;
use Silex\Application;
use Silex\ServiceProviderInterface;
class ZippyServiceProvider implements ServiceProviderInterface
{
public function register(Application $app)
{
$app['zippy'] = $app->share(function () {
return Zippy::load();
});
}
public function boot(Application $app)
{
}
}