/opt/cpanel/ea-wappspector/vendor/rector/rector/src/Caching/ValueObject
Edit: /opt/cpanel/ea-wappspector/vendor/rector/rector/src/Caching/ValueObject/CacheItem.php (1054B)
variableKey = $variableKey;
$this->data = $data;
}
/**
* @param mixed[] $properties
*/
public static function __set_state(array $properties) : self
{
return new self($properties['variableKey'], $properties['data']);
}
public function isVariableKeyValid(string $variableKey) : bool
{
return $this->variableKey === $variableKey;
}
/**
* @return mixed
*/
public function getData()
{
return $this->data;
}
}