#Configuration
#setDebugStatus
Disabled by default, enable/disable debugging for the component.
1public function configure(): void
2{
3 $this->setDebugStatus(true);
4 $this->setDebugStatus(false);
5}
#setDebugEnabled
Enable debugging for the component.
1public function configure(): void
2{
3 // Shorthand for $this->setDebugStatus(true)
4 $this->setDebugEnabled();
5}
#setDebugDisabled
Disable debugging for the component.
1public function configure(): void
2{
3 // Shorthand for $this->setDebugStatus(false)
4 $this->setDebugDisabled();
5}