- Added a default action for print

This commit is contained in:
Dave M. 2023-11-03 19:52:15 -04:00
parent 5aa70dfd17
commit 0e655fd387
1 changed files with 2 additions and 0 deletions

View File

@ -33,6 +33,8 @@ class SectionToken implements ControlStructure {
throw new \RuntimeException("A section closing tag {% endsection %} was found without an opening {% section %} tag");
}
$this->action = PrintActionEnum::default;
return $this->printEndSection($context);
}
}