Skip to content
Snippets Groups Projects
Unverified Commit 655e98d7 authored by Jaime Pérez Crespo's avatar Jaime Pérez Crespo
Browse files

Add a method to get the (normalized) template name from a XHTML\Template object.

This is useful when testing.
parent c9dfb142
No related branches found
No related tags found
No related merge requests found
...@@ -142,6 +142,17 @@ class Template extends Response ...@@ -142,6 +142,17 @@ class Template extends Response
} }
/**
* Get the normalized template name.
*
* @return string The name of the template to use.
*/
public function getTemplateName()
{
return $this->normalizeTemplateName($this->template);
}
/** /**
* Normalize the name of the template to one of the possible alternatives. * Normalize the name of the template to one of the possible alternatives.
* *
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment