for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace Xervice\Shell\Business\Command;
class Converter implements ConverterInterface
{
/**
* @param $command
* @param string ...$params
*
* @return string
*/
public function convert($command, ...$params): string
return sprintf($command, ...$params);
}