Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[PHP] fix: make generate abstract classes actually abstract #4774

Open
wants to merge 1 commit into
base: dev
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ use Antlr\\Antlr4\\Runtime\\Tree\\TerminalNode;
* which can be extended to create a listener which only needs to handle a subset
* of the available methods.
*/
class <file.grammarName>BaseListener implements <file.grammarName>Listener
abstract class <file.grammarName>BaseListener implements <file.grammarName>Listener
{
<file.listenerNames:{lname |
/**
Expand Down Expand Up @@ -188,7 +188,7 @@ use Antlr\\Antlr4\\Runtime\\Tree\\AbstractParseTreeVisitor;
* which can be extended to create a visitor which only needs to handle a subset
* of the available methods.
*/
class <file.grammarName>BaseVisitor extends AbstractParseTreeVisitor implements <file.grammarName>Visitor
abstract class <file.grammarName>BaseVisitor extends AbstractParseTreeVisitor implements <file.grammarName>Visitor
{
<file.visitorNames:{lname |
/**
Expand Down
Loading