parent
eb314c5971
commit
b3dbd95332
|
@ -85,7 +85,7 @@ EOT
|
||||||
|
|
||||||
// switch channel if requested
|
// switch channel if requested
|
||||||
$requestedChannel = null;
|
$requestedChannel = null;
|
||||||
foreach (Versions::CHANNELS as $channel) {
|
foreach (Versions::$channels as $channel) {
|
||||||
if ($input->getOption($channel)) {
|
if ($input->getOption($channel)) {
|
||||||
$requestedChannel = $channel;
|
$requestedChannel = $channel;
|
||||||
$versionsUtil->setChannel($channel);
|
$versionsUtil->setChannel($channel);
|
||||||
|
|
|
@ -21,7 +21,7 @@ use Composer\Json\JsonFile;
|
||||||
*/
|
*/
|
||||||
class Versions
|
class Versions
|
||||||
{
|
{
|
||||||
const CHANNELS = array('stable', 'preview', 'snapshot', '1', '2');
|
public static $channels = array('stable', 'preview', 'snapshot', '1', '2');
|
||||||
|
|
||||||
private $rfs;
|
private $rfs;
|
||||||
private $config;
|
private $config;
|
||||||
|
@ -52,8 +52,8 @@ class Versions
|
||||||
|
|
||||||
public function setChannel($channel)
|
public function setChannel($channel)
|
||||||
{
|
{
|
||||||
if (!in_array($channel, self::CHANNELS, true)) {
|
if (!in_array($channel, self::$channels, true)) {
|
||||||
throw new \InvalidArgumentException('Invalid channel '.$channel.', must be one of: ' . implode(', ', self::CHANNELS));
|
throw new \InvalidArgumentException('Invalid channel '.$channel.', must be one of: ' . implode(', ', self::$channels));
|
||||||
}
|
}
|
||||||
|
|
||||||
$channelFile = $this->config->get('home').'/update-channel';
|
$channelFile = $this->config->get('home').'/update-channel';
|
||||||
|
|
Loading…
Reference in New Issue