%PDF- %PDF-
Direktori : /var/www/html/workeasy-api/vendor/symfony/thanks/src/ |
Current File : //var/www/html/workeasy-api/vendor/symfony/thanks/src/Thanks.php |
<?php /* * This file is part of the Symfony package. * * (c) Fabien Potencier <fabien@symfony.com> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Symfony\Thanks; use Composer\Composer; use Composer\IO\IOInterface; use Composer\Plugin\Capability\CommandProvider; use Composer\Plugin\Capable; use Composer\Plugin\PluginInterface; /** * @author Nicolas Grekas <p@tchwork.com> */ class Thanks implements Capable, CommandProvider, PluginInterface { public function activate(Composer $composer, IOInterface $io) { } public function getCapabilities() { return [ CommandProvider::class => __CLASS__, ]; } public function getCommands() { return [ new Command\ThanksCommand(), ]; } }