We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 37be684 commit 6981a74Copy full SHA for 6981a74
src/MartinGeorgiev/Doctrine/ORM/Query/AST/Functions/BaseFunction.php
@@ -31,7 +31,22 @@ abstract class BaseFunction extends FunctionNode
31
*/
32
protected array $nodes = [];
33
34
- abstract protected function customizeFunction(): void;
+ /**
35
+ * TODO Make abstract when {@see customiseFunction()} is no more
36
+ */
37
+ protected function customizeFunction(): void
38
+ {
39
+ // Void
40
+ }
41
+
42
43
+ * @deprecated
44
45
+ protected function customiseFunction(): void
46
47
+ trigger_error('Method '.__METHOD__.' was renamed to '.__CLASS__.'::customizeFunction().', E_USER_DEPRECATED);
48
+ $this->customizeFunction();
49
50
51
protected function setFunctionPrototype(string $functionPrototype): void
52
{
0 commit comments