sonarrradarrplexorganizrnginxdashboardlandingpagestartpagelandinghtpcserverhomepagesabnzbdheimdallembycouchpotatonzbgetbookmarkapplication-dashboardmuximux
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
42 lines
606 B
42 lines
606 B
7 years ago
|
<?php
|
||
|
namespace PharIo\Version;
|
||
|
|
||
|
class PreReleaseSuffix
|
||
|
{
|
||
|
/**
|
||
|
* @var string
|
||
|
*/
|
||
|
private $value;
|
||
|
|
||
|
/**
|
||
|
* @var int
|
||
|
*/
|
||
|
private $number;
|
||
|
|
||
|
/**
|
||
|
* @param string $value
|
||
|
* @param int|null $number
|
||
|
*/
|
||
|
public function __construct($value, $number = null)
|
||
|
{
|
||
|
$this->value = $value;
|
||
|
$this->number = $number;
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @return string
|
||
|
*/
|
||
|
public function getValue()
|
||
|
{
|
||
|
return $this->value;
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @return int|null
|
||
|
*/
|
||
|
public function getNumber()
|
||
|
{
|
||
|
return $this->number;
|
||
|
}
|
||
|
}
|