mirror of
https://github.com/shlinkio/shlink.git
synced 2024-12-17 16:42:12 +03:00
95 lines
1.6 KiB
PHP
95 lines
1.6 KiB
PHP
|
<?php
|
||
|
namespace Shlinkio\Shlink\Core\Options;
|
||
|
|
||
|
use Shlinkio\Shlink\Common\Util\StringUtilsTrait;
|
||
|
use Zend\Stdlib\AbstractOptions;
|
||
|
|
||
|
class AppOptions extends AbstractOptions
|
||
|
{
|
||
|
use StringUtilsTrait;
|
||
|
|
||
|
/**
|
||
|
* @var string
|
||
|
*/
|
||
|
protected $name = '';
|
||
|
/**
|
||
|
* @var string
|
||
|
*/
|
||
|
protected $version = '1.0';
|
||
|
/**
|
||
|
* @var string
|
||
|
*/
|
||
|
protected $secretKey = '';
|
||
|
|
||
|
/**
|
||
|
* AppOptions constructor.
|
||
|
* @param array|null|\Traversable $options
|
||
|
*/
|
||
|
public function __construct($options = null)
|
||
|
{
|
||
|
parent::__construct($options);
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @return string
|
||
|
*/
|
||
|
public function getName()
|
||
|
{
|
||
|
return $this->name;
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @param string $name
|
||
|
* @return $this
|
||
|
*/
|
||
|
protected function setName($name)
|
||
|
{
|
||
|
$this->name = $name;
|
||
|
return $this;
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @return string
|
||
|
*/
|
||
|
public function getVersion()
|
||
|
{
|
||
|
return $this->version;
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @param string $version
|
||
|
* @return $this
|
||
|
*/
|
||
|
protected function setVersion($version)
|
||
|
{
|
||
|
$this->version = $version;
|
||
|
return $this;
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @return mixed
|
||
|
*/
|
||
|
public function getSecretKey()
|
||
|
{
|
||
|
return $this->secretKey;
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @param mixed $secretKey
|
||
|
* @return $this
|
||
|
*/
|
||
|
protected function setSecretKey($secretKey)
|
||
|
{
|
||
|
$this->secretKey = $secretKey;
|
||
|
return $this;
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @return string
|
||
|
*/
|
||
|
public function __toString()
|
||
|
{
|
||
|
return sprintf('%s:v%s', $this->name, $this->version);
|
||
|
}
|
||
|
}
|