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) 2019 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\CopySkeletonCommand;
/**
* Test copy skeleton command.
* @author webeweb <https://github.com/webeweb/>
* @package WBW\Bundle\CoreBundle\Tests\Fixtures\Command
class TestCopySkeletonCommand extends CopySkeletonCommand {
* {@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);
public function getResourcesDirectory(): string {
return parent::getResourcesDirectory();