Version.php 556 B

1234567891011121314151617181920212223242526272829303132
  1. <?php
  2. /**
  3. * SPDX-FileCopyrightText: 2016 Nextcloud GmbH and Nextcloud contributors
  4. * SPDX-License-Identifier: AGPL-3.0-or-later
  5. */
  6. namespace OC\App\AppStore\Version;
  7. class Version {
  8. /**
  9. * @param string $minVersion
  10. * @param string $maxVersion
  11. */
  12. public function __construct(
  13. private string $minVersion,
  14. private string $maxVersion,
  15. ) {
  16. }
  17. /**
  18. * @return string
  19. */
  20. public function getMinimumVersion() {
  21. return $this->minVersion;
  22. }
  23. /**
  24. * @return string
  25. */
  26. public function getMaximumVersion() {
  27. return $this->maxVersion;
  28. }
  29. }