We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 3582113 + a3bf213 commit 48e2233Copy full SHA for 48e2233
src/Sql/AbstractSql.php
@@ -36,7 +36,7 @@
36
37
abstract class AbstractSql implements SqlInterface
38
{
39
- public SqlInterface|PreparableSqlInterface|null $subject = null;
+ protected SqlInterface|PreparableSqlInterface|null $subject = null;
40
41
/**
42
* Specifications for Sql String generation
@@ -45,6 +45,11 @@ abstract class AbstractSql implements SqlInterface
45
*/
46
protected array $specifications = [];
47
48
+ /**
49
+ * Information used during processing
50
+ *
51
+ * @var array{paramPrefix: string, subselectCount: int}
52
+ */
53
protected array $processInfo = ['paramPrefix' => '', 'subselectCount' => 0];
54
55
protected array $instanceParameterIndex = [];
0 commit comments