Bug 6679: Fix 9 perlcritic violations in C4/TmplTokenType.pm
- Subroutine prototypes used at line 86, column 1. See page 194 of PBP. (Severity: 5) Signed-off-by: Jonathan Druart <jonathan.druart@biblibre.com> Signed-off-by: Kyle M Hall <kyle@bywatersolutions.com> Signed-off-by: Tomas Cohen Arazi <tomascohen@gmail.com>
This commit is contained in:
parent
2ee1a35dfa
commit
09787ec8b0
1 changed files with 9 additions and 9 deletions
|
@ -83,15 +83,15 @@ sub to_string {
|
|||
return $this->{'name'}
|
||||
}
|
||||
|
||||
sub TEXT () { $_text }
|
||||
sub TEXT_PARAMETRIZED () { $_text_parametrized }
|
||||
sub CDATA () { $_cdata }
|
||||
sub TAG () { $_tag }
|
||||
sub DECL () { $_decl }
|
||||
sub PI () { $_pi }
|
||||
sub DIRECTIVE () { $_directive }
|
||||
sub COMMENT () { $_comment }
|
||||
sub UNKNOWN () { $_unknown }
|
||||
sub TEXT { $_text }
|
||||
sub TEXT_PARAMETRIZED { $_text_parametrized }
|
||||
sub CDATA { $_cdata }
|
||||
sub TAG { $_tag }
|
||||
sub DECL { $_decl }
|
||||
sub PI { $_pi }
|
||||
sub DIRECTIVE { $_directive }
|
||||
sub COMMENT { $_comment }
|
||||
sub UNKNOWN { $_unknown }
|
||||
|
||||
###############################################################################
|
||||
|
||||
|
|
Loading…
Reference in a new issue