for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Nexus\Shell\Business\Model\Executor;
class Exec implements ExecutorInterface
{
/**
* @param string $command
*
* @return string
*/
public function execute(string $command): string
exec($command, $output);
return implode(PHP_EOL, $output);
}