for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Jobles\Core\Index;
final class Index
{
/**
* @var string
*/
private $key;
private $name;
private $url;
private $affiliateId;
public function __construct(string $key, string $name, string $url, string $affiliateId)
$this->key = $key;
$this->name = $name;
$this->url = $url;
$this->affiliateId = $affiliateId;
}
* @return string
public function getKey()
return $this->key;
public function getName()
return $this->name;
public function getUrl()
return $this->url;
public function getAffiliateId()
return $this->affiliateId;