for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace PhpGitHooks\Module\Files\Contract\Response;
class ComposerFilesResponse
{
/**
* @var bool
*/
private $exists;
private $jsonFile;
private $lockFile;
* ComposerFilesResponse constructor.
*
* @param bool $exists
* @param bool $jsonFile
* @param bool $lockFile
public function __construct($exists, $jsonFile, $lockFile)
$this->exists = $exists;
$this->jsonFile = $jsonFile;
$this->lockFile = $lockFile;
}
* @return bool
public function isExists()
return $this->exists;
public function isJsonFile()
return $this->jsonFile;
public function isLockFile()
return $this->lockFile;