Deprecated: Constant E_STRICT is deprecated in /home/pastorz/old-espace-client/vendor/symfony/error-handler/ErrorHandler.php on line 58

Deprecated: Constant E_STRICT is deprecated in /home/pastorz/old-espace-client/vendor/symfony/error-handler/ErrorHandler.php on line 76
Symfony Profiler

vendor/liip/imagine-bundle/Imagine/Cache/SignerInterface.php line 33

Open in your IDE?
  1. <?php
  2. /*
  3.  * This file is part of the `liip/LiipImagineBundle` project.
  4.  *
  5.  * (c) https://github.com/liip/LiipImagineBundle/graphs/contributors
  6.  *
  7.  * For the full copyright and license information, please view the LICENSE.md
  8.  * file that was distributed with this source code.
  9.  */
  10. namespace Liip\ImagineBundle\Imagine\Cache;
  11. interface SignerInterface
  12. {
  13.     /**
  14.      * Return the hash for path and runtime config.
  15.      *
  16.      * @param string $path
  17.      *
  18.      * @return string
  19.      */
  20.     public function sign($path, array $runtimeConfig null);
  21.     /**
  22.      * Check hash is correct.
  23.      *
  24.      * @param string $hash
  25.      * @param string $path
  26.      *
  27.      * @return bool
  28.      */
  29.     public function check($hash$path, array $runtimeConfig null);
  30. }