ScriptFUSION\Porter\Cache\CacheItem::__construct PHP Method

__construct() private method

private __construct ( $key, $value, $hit )
    private function __construct($key, $value, $hit)
    {
        $this->key = "{$key}";
        $this->value = $value;
        $this->hit = (bool) $hit;
    }