Files
firefly-iii/app/Support/Search/QueryParser/Node.php

19 lines
263 B
PHP
Raw Normal View History

2025-01-02 22:17:56 +01:00
<?php
declare(strict_types=1);
namespace FireflyIII\Support\Search\QueryParser;
/**
* Base class for all nodes
*/
abstract class Node
{
protected bool $prohibited;
public function isProhibited(): bool
{
return $this->prohibited;
}
}