Initial commit

This commit is contained in:
isUnknown 2025-10-03 07:46:23 +02:00
commit efa5624dab
687 changed files with 162710 additions and 0 deletions

View file

@ -0,0 +1,23 @@
<?php
namespace Kirby\Query\AST;
use Kirby\Query\Visitors\Visitor;
/**
* Basic node representation in the query AST
*
* @package Kirby Query
* @author Roman Steiner <roman@toastlab.ch>,
* Nico Hoffmann <nico@getkirby.com>
* @link https://getkirby.com
* @license https://opensource.org/licenses/MIT
* @since 5.1.0
* @unstable
*
* @codeCoverageIgnore
*/
abstract class Node
{
abstract public function resolve(Visitor $visitor);
}