for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace Ctefan\Kiwi;
class EditInfo
{
/**
* @var Tag
*/
protected $tag;
* @var Constraint
protected $constraint;
* @var float
protected $constant;
* EditInfo constructor.
*
* @param Constraint $constraint
* @param Tag $tag
* @param float $constant
public function __construct(Constraint $constraint, Tag $tag, float $constant)
$this->constraint = $constraint;
$this->tag = $tag;
$this->constant = $constant;
}
* @return Tag
public function getTag(): Tag
return $this->tag;
public function setTag(Tag $tag): void
* @return Constraint
public function getConstraint(): Constraint
return $this->constraint;
public function setConstraint(Constraint $constraint): void
* @return float
public function getConstant(): float
return $this->constant;
public function setConstant(float $constant): void