TimeFactory.php 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. <?php
  2. declare(strict_types=1);
  3. /**
  4. * @copyright Copyright (c) 2016, ownCloud, Inc.
  5. *
  6. * @author Bernhard Posselt <dev@bernhard-posselt.com>
  7. * @author Joas Schilling <coding@schilljs.com>
  8. * @author Morris Jobke <hey@morrisjobke.de>
  9. * @author Thomas Müller <thomas.mueller@tmit.eu>
  10. *
  11. * @license AGPL-3.0
  12. *
  13. * This code is free software: you can redistribute it and/or modify
  14. * it under the terms of the GNU Affero General Public License, version 3,
  15. * as published by the Free Software Foundation.
  16. *
  17. * This program is distributed in the hope that it will be useful,
  18. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  19. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  20. * GNU Affero General Public License for more details.
  21. *
  22. * You should have received a copy of the GNU Affero General Public License, version 3,
  23. * along with this program. If not, see <http://www.gnu.org/licenses/>
  24. *
  25. */
  26. namespace OC\AppFramework\Utility;
  27. use OCP\AppFramework\Utility\ITimeFactory;
  28. /**
  29. * Needed to mock calls to time()
  30. */
  31. class TimeFactory implements ITimeFactory {
  32. /**
  33. * @return int the result of a call to time()
  34. */
  35. public function getTime(): int {
  36. return time();
  37. }
  38. /**
  39. * @param string $time
  40. * @param \DateTimeZone $timezone
  41. * @return \DateTime
  42. * @since 15.0.0
  43. */
  44. public function getDateTime(string $time = 'now', \DateTimeZone $timezone = null): \DateTime {
  45. return new \DateTime($time, $timezone);
  46. }
  47. }