Lines Matching full:options
35 * Options
39 protected $options; variable in SimplePie\\Cache\\Redis
53 …* @param Base::TYPE_FEED|Base::TYPE_IMAGE|array<string, mixed>|null $options Either TYPE_FEED for …
55 public function __construct(string $location, string $name, $options = null) argument
69 if (!is_null($options) && is_array($options)) {
70 $this->options = $options;
72 $this->options = [
78 $this->name = $this->options['prefix'] . $name;
102 if ($this->options['expire']) {
103 $this->cache->expire($this->name, $this->options['expire']);
151 if ($this->options['expire']) {
152 return $this->cache->expire($this->name, $this->options['expire']);