for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Yoanm\ComposerConfigManager\Domain\Model;
class Support
{
/** @var string */
private $type;
private $url;
/**
* @param string $type
* @param string $url
*/
public function __construct($type, $url)
$this->type = $type;
$this->url = $url;
}
* @return string
public function getType()
return $this->type;
public function getUrl()
return $this->url;