1
0
Fork 0
mirror of synced 2024-09-29 08:51:28 +13:00

Update TemplateTest.php

This commit is contained in:
Mou Ikkai 2020-09-30 17:56:45 -04:00 committed by GitHub
parent 68216b303e
commit e90155b9dc
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -12,7 +12,7 @@ class TemplateTest extends TestCase
*/ */
protected $object = null; protected $object = null;
public function setUp() public function setUp(): void
{ {
$this->object = new Template(__DIR__.'/../../resources/template.tpl'); $this->object = new Template(__DIR__.'/../../resources/template.tpl');
$this->object $this->object
@ -20,7 +20,7 @@ class TemplateTest extends TestCase
; ;
} }
public function tearDown() public function tearDown(): void
{ {
} }