for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace PhpGitHooks\Module\PhpUnit\Contract\Command;
use Bruli\EventBusBundle\CommandBus\CommandInterface;
class GuardCoverage implements CommandInterface
{
/**
* @var string
*/
private $warningMessage;
* GuardCoverageCommand constructor.
*
* @param string $warningMessage
public function __construct($warningMessage)
$this->warningMessage = $warningMessage;
}
* @return string
public function getWarningMessage()
return $this->warningMessage;