Code Coverage
 
Classes and Traits
Functions and Methods
Lines
Total
100.00% covered (success)
100.00%
1 / 1
100.00% covered (success)
100.00%
2 / 2
CRAP
100.00% covered (success)
100.00%
3 / 3
ExpirationTrait
100.00% covered (success)
100.00%
1 / 1
100.00% covered (success)
100.00%
2 / 2
2
100.00% covered (success)
100.00%
3 / 3
 getExpiration
100.00% covered (success)
100.00%
1 / 1
1
100.00% covered (success)
100.00%
1 / 1
 setExpiration
100.00% covered (success)
100.00%
1 / 1
1
100.00% covered (success)
100.00%
2 / 2
<?php
declare(strict_types=1);
namespace Korobochkin\WPKit\DataComponents\Traits;
trait ExpirationTrait
{
    /**
     * @var int Number of seconds to keep the data before refreshing.
     */
    protected $expiration = 1;
    /**
     * Return number of seconds after which value will expire.
     *
     * @return int Expiration in seconds.
     */
    public function getExpiration()
    {
        return $this->expiration;
    }
    /**
     * Set number of seconds after which value will expire.
     *
     * @param int $expiration
     *
     * @return $this For chain calls.
     */
    public function setExpiration($expiration)
    {
        $this->expiration = $expiration;
        return $this;
    }
}