FileMaster
Search
Toggle Dark Mode
Home
/
.
/
wp-content
/
plugins
/
mailpoet
/
vendor-prefixed
/
doctrine
/
orm
/
src
/
Cache
Edit File: TimestampCacheEntry.php
<?php declare (strict_types=1); namespace MailPoetVendor\Doctrine\ORM\Cache; if (!defined('ABSPATH')) exit; use function microtime; class TimestampCacheEntry implements CacheEntry { public $time; public function __construct($time = null) { $this->time = $time ? (float) $time : microtime(\true); } public static function __set_state(array $values) { return new self($values['time']); } }
Save
Back