Lines Matching defs:bool
116 * @var bool
118 private bool $critical;
147 * @var bool run as soon as possible
149 private bool $async;
154 * @var bool a property to track if a snippet has already been asked in a html output
162 private bool $hasHtmlOutputOccurred = false;
409 * @param $bool - if the snippet is critical, it would not be deferred or preloaded
424 public function setCritical($bool): Snippet
426 $this->critical = $bool;
433 * @param $bool
436 public function setDoesManipulateTheDomOnRun($bool): Snippet
438 $this->async = !$bool;
502 public function hasSlot($slot): bool
515 public function getCritical(): bool
662 public function useLocalUrl(): bool
813 public function hasInlineContent(): bool
830 * @return bool
832 public function shouldBeInlined(): bool
965 public function useRemoteUrl(): bool
1088 * @return bool - yes if the function {@link Snippet::toTagAttributes()}
1092 public function hasHtmlOutputAlreadyOccurred(): bool
1099 private function hasRemoteUrl(): bool
1154 private function hasLocalUrl(): bool