for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/*
* This file is part of the core-bundle package.
*
* (c) 2018 WEBEWEB
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace WBW\Bundle\CoreBundle\Tests\Fixtures\Command;
use Symfony\Component\Console\Style\StyleInterface;
use WBW\Bundle\CoreBundle\Command\UnzipAssetsCommand;
/**
* Test unzip assets command.
* @author webeweb <https://github.com/webeweb>
* @package WBW\Bundle\CoreBundle\Tests\Fixtures\Command
class TestUnzipAssetsCommand extends UnzipAssetsCommand {
* {@inheritDoc}
public function displayFooter(StyleInterface $io, int $exitCode, int $count): void {
parent::displayFooter($io, $exitCode, $count);
}
public function displayResult(StyleInterface $io, array $results): int {
return parent::displayResult($io, $results);