Skip to content

Commit 8dfb46a

Browse files
committed
Cleaning up
1 parent 4b50983 commit 8dfb46a

File tree

2 files changed

+11
-9
lines changed

2 files changed

+11
-9
lines changed

src/mako/database/query/values/out/Value.php

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,24 @@
77

88
namespace mako\database\query\values\out;
99

10+
use Override;
11+
1012
/**
1113
* Base value.
1214
*/
1315
abstract 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
*

src/mako/database/query/values/out/Vector.php

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff 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
}

0 commit comments

Comments
 (0)