phabel/src/Context.php

24 lines
320 B
PHP
Raw Normal View History

2020-08-03 21:31:32 +02:00
<?php
namespace Phabel;
2020-08-14 14:43:29 +02:00
use SplStack;
2020-08-13 18:30:12 +02:00
/**
* @author Daniil Gentili <daniil@daniil.it>
2020-08-14 14:43:29 +02:00
* @license MIT
2020-08-13 18:30:12 +02:00
*/
2020-08-03 21:31:32 +02:00
class Context
{
2020-08-14 14:43:29 +02:00
/**
* Parent nodes stack
*
* @var SplStack<Node>
*/
public SplStack $parents;
public function __construct()
{
$this->parents = new SplStack;
}
2020-08-09 13:49:19 +02:00
}