You are here

public function EnvParametersResource::isFresh in Zircon Profile 8.0

Same name and namespace in other branches
  1. 8 vendor/symfony/http-kernel/Config/EnvParametersResource.php \Symfony\Component\HttpKernel\Config\EnvParametersResource::isFresh()

File

vendor/symfony/http-kernel/Config/EnvParametersResource.php, line 63

Class

EnvParametersResource
EnvParametersResource represents resources stored in prefixed environment variables.

Namespace

Symfony\Component\HttpKernel\Config

Code

public function isFresh($timestamp) {
  return $this
    ->findVariables() === $this->variables;
}