Skip to content

Commit

Permalink
Merged pull request #5
Browse files Browse the repository at this point in the history
  • Loading branch information
derickr committed Dec 13, 2024
2 parents 0298a43 + b4bce09 commit 7051a33
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 0 deletions.
6 changes: 6 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
1.1.1 - Friday 13 December 2024
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

- Fix deprecations for PHP 8.2.


1.1 - Saturday 27 September 2014
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

Expand Down
10 changes: 10 additions & 0 deletions src/viewhandlers/template.php
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,16 @@ class ezcMvcTemplateViewHandler implements ezcMvcViewHandler
*/
protected $variables = array();

/**
* @var string
*/
protected $templateLocation;

/**
* @var ezcTemplate
*/
protected $template;

/**
* Creates a new view handler, where $zoneName is the name of the block and
* $templateLocation the location of a view template.
Expand Down
5 changes: 5 additions & 0 deletions tests/views/template-tiein_test.php
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,11 @@
*/
class ezcMvcTemplateViewTest extends ezcTestCase
{
/**
* @var string
*/
private $baseDir;

function setUp() : void
{
$this->baseDir = dirname( __FILE__ ) . '/../testfiles/views/template/';
Expand Down

0 comments on commit 7051a33

Please sign in to comment.