CollectorInterface.php 147 B

12345678910
  1. <?php
  2. namespace RedisBundle\Services;
  3. interface CollectorInterface
  4. {
  5. public function get($key);
  6. public function set($key, $data);
  7. }