mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-09-24 06:43:23 +00:00
19 lines
263 B
PHP
19 lines
263 B
PHP
![]() |
<?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;
|
||
|
}
|
||
|
}
|