-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[BUGFIX] Fix warning about constant modifiers
- Loading branch information
Showing
2 changed files
with
4 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
6 changes: 3 additions & 3 deletions
6
tests/integration/class-with-const-illegal-modifier-combinations/expected/logs/warning.log
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
app.WARNING: A PHP method cannot be private and public at the same time. {"rst-file":"index.rst"} [] | ||
app.WARNING: A PHP method cannot be protected and public at the same time. {"rst-file":"index.rst"} [] | ||
app.WARNING: A PHP method cannot be private and protected at the same time. {"rst-file":"index.rst"} [] | ||
app.WARNING: A PHP constant cannot be private and public at the same time. {"rst-file":"index.rst"} [] | ||
app.WARNING: A PHP constant cannot be protected and public at the same time. {"rst-file":"index.rst"} [] | ||
app.WARNING: A PHP constant cannot be private and protected at the same time. {"rst-file":"index.rst"} [] |