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.
 
 
 
 
 
 
nextcloud-server/tests/lib/Support/Subscription/DummySubscription.php

49 lines
1.1 KiB

<?php
declare(strict_types=1);
/**
* SPDX-FileCopyrightText: 2020 Nextcloud GmbH and Nextcloud contributors
* SPDX-License-Identifier: AGPL-3.0-or-later
*/
namespace Test\Support\Subscription;
class DummySubscription implements \OCP\Support\Subscription\ISubscription {
/** @var bool */
private $hasValidSubscription;
/** @var bool */
private $hasExtendedSupport;
/** @var bool */
private $isHardUserLimitReached;
/**
* DummySubscription constructor.
*
* @param bool $hasValidSubscription
* @param bool $hasExtendedSupport
*/
public function __construct(bool $hasValidSubscription, bool $hasExtendedSupport, bool $isHardUserLimitReached) {
$this->hasValidSubscription = $hasValidSubscription;
$this->hasExtendedSupport = $hasExtendedSupport;
$this->isHardUserLimitReached = $isHardUserLimitReached;
}
/**
* @inheritDoc
*/
public function hasValidSubscription(): bool {
return $this->hasValidSubscription;
}
/**
* @inheritDoc
*/
public function hasExtendedSupport(): bool {
return $this->hasExtendedSupport;
}
public function isHardUserLimitReached(): bool {
return $this->isHardUserLimitReached;
}
}