mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-10-15 16:57:09 +00:00
Rearrange structure
This commit is contained in:
20
app/Support/Search/QueryParser/Node.php
Normal file
20
app/Support/Search/QueryParser/Node.php
Normal file
@@ -0,0 +1,20 @@
|
||||
<?php
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
namespace FireflyIII\Support\Search\QueryParser;
|
||||
|
||||
/**
|
||||
* Base class for all nodes
|
||||
*/
|
||||
abstract class Node
|
||||
{
|
||||
abstract public function __toString(): string;
|
||||
|
||||
protected bool $prohibited;
|
||||
|
||||
public function isProhibited(): bool
|
||||
{
|
||||
return $this->prohibited;
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user