File tree Expand file tree Collapse file tree 2 files changed +11
-9
lines changed
src/mako/database/query/values/out Expand file tree Collapse file tree 2 files changed +11
-9
lines changed Original file line number Diff line number Diff line change 77
88namespace mako \database \query \values \out ;
99
10+ use Override ;
11+
1012/**
1113 * Base value.
1214 */
1315abstract class Value implements ValueWithAliasInterface
1416{
1517 protected ?string $ alias = null ;
1618
19+ /**
20+ * {@inheritDoc}
21+ */
22+ #[Override]
23+ public function getParameters (): ?array
24+ {
25+ return null ;
26+ }
27+
1728 /**
1829 * Sets the value alias.
1930 *
Original file line number Diff line number Diff line change @@ -38,13 +38,4 @@ public function getSql(Compiler $compiler): string
3838 default => throw new DatabaseException (sprintf ('Vector values are not supported by the [ %s ] compiler. ' , $ compiler ::class)),
3939 };
4040 }
41-
42- /**
43- * {@inheritDoc}
44- */
45- #[Override]
46- public function getParameters (): ?array
47- {
48- return null ;
49- }
5041}
You can’t perform that action at this time.
0 commit comments