Lines Matching refs:isCritical
42 protected $isCritical = false;
47 * @param bool $isCritical
49 public function __construct(string $name, ?string $value = null, bool $isCritical = false)
53 $this->isCritical = $isCritical;
96 return $this->isCritical;
100 * @param bool $isCritical
103 public function setIsCritical(bool $isCritical)
105 $this->isCritical = $isCritical;
115 $ext = ($this->isCritical ? '!' : '') . str_replace(',', '%2c', self::encode($this->name));
144 $isCritical = isset($pieces[0][0]) && $pieces[0][0] === '!';
145 if ($isCritical) {
152 return new self($name, $value, $isCritical);