diff --git a/src/Sql/AbstractSql.php b/src/Sql/AbstractSql.php index bbd1ed6d..d7170b30 100644 --- a/src/Sql/AbstractSql.php +++ b/src/Sql/AbstractSql.php @@ -36,7 +36,7 @@ abstract class AbstractSql implements SqlInterface { - public SqlInterface|PreparableSqlInterface|null $subject = null; + protected SqlInterface|PreparableSqlInterface|null $subject = null; /** * Specifications for Sql String generation @@ -45,6 +45,11 @@ abstract class AbstractSql implements SqlInterface */ protected array $specifications = []; + /** + * Information used during processing + * + * @var array{paramPrefix: string, subselectCount: int} + */ protected array $processInfo = ['paramPrefix' => '', 'subselectCount' => 0]; protected array $instanceParameterIndex = [];