update: make variable private.

This commit is contained in:
Darshan 2025-05-03 09:59:53 +05:30
parent 29647a9dc8
commit 04539bff4a

View file

@ -7,7 +7,7 @@ use Utopia\Route;
abstract class Filter
{
protected ?Route $route;
private ?Route $route;
private ?Database $dbForProject;
public function __construct(Database $dbForProject = null, Route $route = null)