Your IP : 216.73.216.84


Current Path : /home/helpink/www/libraries/vendor/php-tuf/php-tuf/src/Helper/
Upload File :
Current File : /home/helpink/www/libraries/vendor/php-tuf/php-tuf/src/Helper/Clock.php

<?php

namespace Tuf\Helper;

/**
 * Provides time related functions.
 */
class Clock
{
    /**
     * Gets the current time.
     *
     * @return int
     *   The current time.
     *
     * @codeCoverageIgnore
     */
    public function getCurrentTime(): int
    {
        return time();
    }
}