for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace PhpGitHooks\Module\Configuration\Contract\Response;
class PhpCsFixerResponse
{
/**
* @var bool
*/
private $phpCsFixer;
private $phpCsFixerPsr0;
private $phpCsFixerPsr1;
private $phpCsFixerPsr2;
private $phpCsFixerSymfony;
* PhpCsFixerResponse constructor.
*
* @param bool $phpCsFixer
* @param bool $phpCsFixerPsr0
* @param bool $phpCsFixerPsr1
* @param bool $phpCsFixerPsr2
* @param bool $phpCsFixerSymfony
public function __construct(
$phpCsFixer,
$phpCsFixerPsr0,
$phpCsFixerPsr1,
$phpCsFixerPsr2,
$phpCsFixerSymfony
) {
$this->phpCsFixer = $phpCsFixer;
$this->phpCsFixerPsr0 = $phpCsFixerPsr0;
$this->phpCsFixerPsr1 = $phpCsFixerPsr1;
$this->phpCsFixerPsr2 = $phpCsFixerPsr2;
$this->phpCsFixerSymfony = $phpCsFixerSymfony;
}
* @return bool
public function isPhpCsFixer()
return $this->phpCsFixer;
public function isPhpCsFixerPsr0()
return $this->phpCsFixerPsr0;
public function isPhpCsFixerPsr1()
return $this->phpCsFixerPsr1;
public function isPhpCsFixerPsr2()
return $this->phpCsFixerPsr2;
public function isPhpCsFixerSymfony()
return $this->phpCsFixerSymfony;