for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace XSolve\FaceValidatorBundle\Result;
class Makeup
{
/**
* @var bool
*/
private $onFace;
private $onLips;
public function __construct(bool $onFace, bool $onLips)
$this->onFace = $onFace;
$this->onLips = $onLips;
}
public function isOnFace(): bool
return $this->onFace;
public function isOnLips(): bool
return $this->onLips;