Skip to content
Snippets Groups Projects
Commit 347fb6e3 authored by Andreas Gohr's avatar Andreas Gohr
Browse files

parsertests: replaced var keywords and added type hints

parent 43b96014
No related branches found
No related tags found
No related merge requests found
......@@ -5,14 +5,16 @@ require_once DOKU_INC . 'inc/parser/handler.php';
abstract class TestOfDoku_Parser extends DokuWikiTest {
var $P;
var $H;
/** @var Doku_Parser */
protected $P;
/** @var Doku_Handler */
protected $H;
function setUp() {
parent::setUp();
$this->P = new Doku_Parser();
$this->H = new Doku_Handler();
$this->P->Handler = & $this->H;
$this->P->Handler = $this->H;
}
function tearDown() {
......
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