for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace Dandelion\Configuration\Vcs;
class Owner
{
/**
* @var string
*/
protected $type;
protected $name;
* @return string
public function getType(): string
return $this->type;
}
* @param string $type
*
* @return \Dandelion\Configuration\Vcs\Owner
public function setType(string $type): Owner
$this->type = $type;
return $this;
public function getName(): string
return $this->name;
* @param string $name
public function setName(string $name): Owner
$this->name = $name;