for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* @author oliverde8<[email protected]>
* @category @category oliverde8/ComfyBundle
*/
namespace oliverde8\ComfyBundle\Entity;
class ConfigValue
{
private $id;
private $path;
private $scope;
private $value;
public function getId(): ?int
return $this->id;
}
public function getPath(): ?string
return $this->path;
public function setPath(string $path): self
$this->path = $path;
return $this;
public function getScope(): ?string
return $this->scope;
public function setScope(string $scope): self
$this->scope = $scope;
public function getValue(): ?string
return $this->value;
public function setValue(?string $value): self
$this->value = $value;