Mercurial > hg > cmmr2012-drupal-site
view vendor/phar-io/version/src/PreReleaseSuffix.php @ 5:12f9dff5fda9 tip
Update to Drupal core 8.7.1
author | Chris Cannam |
---|---|
date | Thu, 09 May 2019 15:34:47 +0100 |
parents | 5311817fb629 |
children |
line wrap: on
line source
<?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; } }