phpDocumentor phpDocumentor
Errors
[ class tree: phpDocumentor ] [ index: phpDocumentor ] [ all elements ]

Procedural File: Errors.inc

Source Location: /phpDocumentor/Errors.inc

Page Details

Error handling for phpDocumentor

phpDocumentor :: automatic documentation generator

PHP versions 4 and 5

Copyright (c) 2001-2006 Gregory Beaver

LICENSE:

This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the License, or (at your option) any later version.

This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details.

You should have received a copy of the GNU Lesser General Public License along with this library; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA

Link:  http://pear.php.net/PhpDocumentor
See:  parserDocBlock, parserInclude, parserPage, parserClass
See:  parserDefine, parserFunction, parserMethod, parserVar
Since:  0.4
Link:  http://www.phpdoc.org
Filesource:  Source Code for this file
Copyright:  2001-2006 Gregory Beaver
License:  LGPL
Version:  CVS: $Id: Errors.inc,v 1.8 2006/08/16 17:08:32 cellog Exp $
Author:  Greg Beaver <[email protected]>
Classes
Class Description
RecordWarning encapsulates warning information
RecordError encapsulates error information
ErrorTracker contains all the errors/warnings
Constants
PDERROR_ACCESS_WRONG_PARAM  [line 72]

PDERROR_ACCESS_WRONG_PARAM = 8

warning triggered when the arguments to @access are neither public nor private


[ Top ]

PDERROR_BEAUTIFYING_FAILED  [line 315]

PDERROR_BEAUTIFYING_FAILED = 66

warning triggered by an unterminated entity in a tutorial


[ Top ]

PDERROR_CANNOT_EXTEND_SELF  [line 356]

PDERROR_CANNOT_EXTEND_SELF = 72

warning triggered if someone brilliant tries "class X extends X {"


[ Top ]

PDERROR_CANT_HAVE_INLINE_IN_TAGNAME  [line 184]

PDERROR_CANT_HAVE_INLINE_IN_TAGNAME = 36

warning triggered when an inline tag is found inside an xml tag name in a package page


[ Top ]

PDERROR_CANT_NEST_IN_B  [line 176]

PDERROR_CANT_NEST_IN_B = 34

warning triggered when another tag is nested in &lt;b&gt; - not allowed in phpDocumentor


[ Top ]

PDERROR_CHILD_TUTORIAL_NOT_FOUND  [line 201]

PDERROR_CHILD_TUTORIAL_NOT_FOUND = 40

warning triggered when a tutorial's child in the .ini file doesn't exist in the

package and subpackage of the parent


[ Top ]

PDERROR_CLASS_CONFLICT  [line 108]

PDERROR_CLASS_CONFLICT = 17

warning triggered when classes in the same package have the same name


[ Top ]

PDERROR_CLASS_EXISTS  [line 56]

PDERROR_CLASS_EXISTS = 4

warning triggered when inheritance could be from more than one class


[ Top ]

PDERROR_CLASS_NOT_IN_PACKAGE  [line 160]

PDERROR_CLASS_NOT_IN_PACKAGE = 30

warning triggered when a getClassByPackage is called and can't find the class


[ Top ]

PDERROR_CLASS_PARENT_NOT_FOUND  [line 156]

PDERROR_CLASS_PARENT_NOT_FOUND = 29

warning triggered when an entire page is ignored because of @access private


[ Top ]

PDERROR_CONVERTER_NOT_FOUND  [line 64]

PDERROR_CONVERTER_NOT_FOUND = 6

warning triggered when a converter is passed to phpDocumentor_IntermediateParser::addConverter() that is not a class


[ Top ]

PDERROR_CONVERTER_OVR_GFCT  [line 265]

PDERROR_CONVERTER_OVR_GFCT = 54

warning triggered when a child converter doesn't override getFormattedClassTrees()


[ Top ]

PDERROR_DB_TEMPLATE_UNTERMINATED  [line 168]

PDERROR_DB_TEMPLATE_UNTERMINATED = 32

warning triggered when a docblock template is never turned off with /**#@-* / (no space)


[ Top ]

PDERROR_DOCBLOCK_CONFLICT  [line 339]

PDERROR_DOCBLOCK_CONFLICT = 68

warning triggered by a page-level docblock preceding a source element

  1.  <?php
  2.  /**
  3.   * Page-level DocBlock
  4.   * @package pagepackage
  5.   ***/
  6.  include 'file.php';


[ Top ]

PDERROR_DOCBLOCK_GOES_CLASS  [line 348]

PDERROR_DOCBLOCK_GOES_CLASS = 70

warning triggered when the first docblock in a file with a @package tag precedes a class. In this case, the class gets the docblock.


[ Top ]

PDERROR_DUMB_USES  [line 360]

PDERROR_DUMB_USES = 73

warning triggered by improper "@uses blah"


[ Top ]

PDERROR_ELEMENT_IGNORED  [line 140]

PDERROR_ELEMENT_IGNORED = 25

warning triggered when a duplicate element is encountered that will be ignored by the documentor


[ Top ]

PDERROR_EMPTY_EXAMPLE_TITLE  [line 303]

PDERROR_EMPTY_EXAMPLE_TITLE = 63

warning triggered by @example path/to/example with no title


[ Top ]

PDERROR_EXAMPLE_NOT_FOUND  [line 238]

PDERROR_EXAMPLE_NOT_FOUND = 48

warning triggered when an example's path from @example /path/to/example.php

is not found


[ Top ]

PDERROR_FUNCTION_HAS_NONAME  [line 326]

PDERROR_FUNCTION_HAS_NONAME = 67

warning triggered by a function with no name

 function ($params)
 {
 }
triggers this error


[ Top ]

PDERROR_GLOBAL_NOT_FOUND  [line 124]

PDERROR_GLOBAL_NOT_FOUND = 21

warning triggered when there are multiple @name tags in a docblock


[ Top ]

PDERROR_ID_MUST_BE_INLINE  [line 253]

PDERROR_ID_MUST_BE_INLINE = 51

warning triggered when an id attribute in a tutorial docbook tag is not

an {@id} inline tag


[ Top ]

PDERROR_IGNORE_TAG_IGNORED  [line 136]

PDERROR_IGNORE_TAG_IGNORED = 24

warning triggered when an @ignore tag is used in a DocBlock preceding a method, variable, include, or global variable


[ Top ]

PDERROR_ILLEGAL_PACKAGENAME  [line 96]

PDERROR_ILLEGAL_PACKAGENAME = 14

warning triggered when the package or subpackage name is illegal


[ Top ]

PDERROR_INHERITANCE_CONFLICT  [line 60]

PDERROR_INHERITANCE_CONFLICT = 5

warning triggered when inheritance could be from more than one class


[ Top ]

PDERROR_INHERITDOC_DONT_WORK_HERE  [line 299]

PDERROR_INHERITDOC_DONT_WORK_HERE = 62

warning triggered by {@inheritdoc} in a non-inheritable situation


[ Top ]

PDERROR_INLINETAG_IN_SEE  [line 248]

PDERROR_INLINETAG_IN_SEE = 50

warning triggered when an example's path from @example /path/to/example.php

is not found


[ Top ]

PDERROR_INTERNAL_NOT_CLOSED  [line 257]

PDERROR_INTERNAL_NOT_CLOSED = 52

warning triggered when an {@internal}} tag is not closed


[ Top ]

PDERROR_INVALID_VALUES  [line 368]

PDERROR_INVALID_VALUES = 75

warning triggered if a command line option does not have a valid value passed in


[ Top ]

PDERROR_MALFORMED_GLOBAL_TAG  [line 132]

PDERROR_MALFORMED_GLOBAL_TAG = 23

warning triggered when there are multiple @name tags in a docblock


[ Top ]

PDERROR_MALFORMED_TAG  [line 291]

PDERROR_MALFORMED_TAG = 60

warning triggered by an empty tag


[ Top ]

PDERROR_MULTIPLE_ACCESS_TAGS  [line 76]

PDERROR_MULTIPLE_ACCESS_TAGS = 9

warning triggered when there are multiple @access tags in a docblock


[ Top ]

PDERROR_MULTIPLE_CATEGORY_TAGS  [line 295]

PDERROR_MULTIPLE_CATEGORY_TAGS = 61

warning triggered by more than 1 @category tag


[ Top ]

PDERROR_MULTIPLE_GLOBAL_TAGS  [line 128]

PDERROR_MULTIPLE_GLOBAL_TAGS = 22

warning triggered when there are multiple @name tags in a docblock


[ Top ]

PDERROR_MULTIPLE_NAME_TAGS  [line 116]

PDERROR_MULTIPLE_NAME_TAGS = 19

warning triggered when there are multiple @name tags in a docblock


[ Top ]

PDERROR_MULTIPLE_PACKAGE_TAGS  [line 88]

PDERROR_MULTIPLE_PACKAGE_TAGS = 12

warning triggered when there are multiple @package tags in a docblock


[ Top ]

PDERROR_MULTIPLE_PARENT  [line 44]

PDERROR_MULTIPLE_PARENT = 1

warning triggered when inheritance could be from more than one class


[ Top ]

PDERROR_MULTIPLE_RETURN_TAGS  [line 80]

PDERROR_MULTIPLE_RETURN_TAGS = 10

warning triggered when there are multiple @return tags in a docblock


[ Top ]

PDERROR_MULTIPLE_SUBPACKAGE_TAGS  [line 92]

PDERROR_MULTIPLE_SUBPACKAGE_TAGS = 13

warning triggered when there are multiple @subpackage tags in a docblock


[ Top ]

PDERROR_MULTIPLE_VAR_TAGS  [line 84]

PDERROR_MULTIPLE_VAR_TAGS = 11

warning triggered when there are multiple @var tags in a docblock


[ Top ]

PDERROR_NEED_WHITESPACE  [line 152]

PDERROR_NEED_WHITESPACE = 28

warning triggered when an entire page is ignored because of @access private


[ Top ]

PDERROR_NESTED_INTERNAL  [line 372]

PDERROR_NESTED_INTERNAL = 76

warning triggered when {@internal}} is nested inside another {@internal}}


[ Top ]

PDERROR_NOTODO_INCLUDE  [line 376]

PDERROR_NOTODO_INCLUDE = 77

warning triggered when @todo is used on an include element


[ Top ]

PDERROR_NO_CONVERTERS  [line 68]

PDERROR_NO_CONVERTERS = 7

warning triggered when a converter is passed to phpDocumentor_IntermediateParser::addConverter() that is not a class


[ Top ]

PDERROR_NO_CONVERTER_HANDLER  [line 243]

PDERROR_NO_CONVERTER_HANDLER = 49

warning triggered when an example's path from @example /path/to/example.php

is not found


[ Top ]

PDERROR_NO_DOCBOOK_ID  [line 352]

PDERROR_NO_DOCBOOK_ID = 71

warning triggered in tutorial parsing if there is a missing {@id} inline tag


[ Top ]

PDERROR_NO_PACKAGE_TAG  [line 228]

PDERROR_NO_PACKAGE_TAG = 46

warning triggered when no @package tag is used in a page-level or class-level DocBlock


[ Top ]

PDERROR_NO_PAGE_LEVELDOCBLOCK  [line 343]

PDERROR_NO_PAGE_LEVELDOCBLOCK = 69

warning triggered when a file does not contain a page-level docblock


[ Top ]

PDERROR_OVERRIDDEN_PACKAGE_TAGS  [line 100]

PDERROR_OVERRIDDEN_PACKAGE_TAGS = 15

warning triggered when there a @package tag is used in a function, define, method, var or include


[ Top ]

PDERROR_OVERRIDDEN_SUBPACKAGE_TAGS  [line 104]

PDERROR_OVERRIDDEN_SUBPACKAGE_TAGS = 16

warning triggered when there a @subpackage tag is used in a function, define, method, var or include


[ Top ]

PDERROR_PACKAGECAT_SET  [line 270]

PDERROR_PACKAGECAT_SET = 55

warning triggered when a package is already associated with a category, and

a new association is found


[ Top ]

PDERROR_PACKAGEOUTPUT_DELETES_PARENT_FILE  [line 120]

PDERROR_PACKAGEOUTPUT_DELETES_PARENT_FILE = 20

warning triggered when there are multiple @name tags in a docblock


[ Top ]

PDERROR_PARENT_NOT_FOUND  [line 48]

PDERROR_PARENT_NOT_FOUND = 2

warning triggered when parent class doesn't exist


[ Top ]

PDERROR_PARSEPRIVATE  [line 144]

PDERROR_PARSEPRIVATE = 26

warning triggered when an entire page is ignored because of @access private


[ Top ]

PDERROR_PDFFUNCTION_NO_FUNC  [line 206]

PDERROR_PDFFUNCTION_NO_FUNC = 41

warning triggered when a <pdffunction:funcname /> tag is used in the PDF

Converter and no funcname is present (<pdffunction: />)


[ Top ]

PDERROR_PDF_METHOD_DOESNT_EXIST  [line 211]

PDERROR_PDF_METHOD_DOESNT_EXIST = 42

warning triggered when a <pdffunction:funcname /> tag is used in the PDF

Converter and funcname is not a Cezpdf method


[ Top ]

PDERROR_PDF_TEMPVAR_DOESNT_EXIST  [line 216]

PDERROR_PDF_TEMPVAR_DOESNT_EXIST = 43

warning triggered when a <pdffunction:funcname arg=$tempvar/> tag is used in the PDF

Converter and "tempvar" is not set from the return of a previous pdffunction tag


[ Top ]

PDERROR_PRIVATE_ASSUMED  [line 233]

PDERROR_PRIVATE_ASSUMED = 47

warning triggered when no @access private tag is used in a global variable/method/var

with _ as first char in name and --pear was specified


[ Top ]

PDERROR_SOURCECODE_IGNORED  [line 287]

PDERROR_SOURCECODE_IGNORED = 59

warning triggered by sourcecode="on", if PHP < 4.3.0


[ Top ]

PDERROR_SOURCE_TAG_FUNCTION_NOT_FOUND  [line 164]

PDERROR_SOURCE_TAG_FUNCTION_NOT_FOUND = 31

warning triggered when a { @source } inline tag is used in a docblock not preceding a function


[ Top ]

PDERROR_SOURCE_TAG_IGNORED  [line 261]

PDERROR_SOURCE_TAG_IGNORED = 53

warning triggered when an {@source} tag is found in a short description


[ Top ]

PDERROR_TAG_NOT_HANDLED  [line 283]

PDERROR_TAG_NOT_HANDLED = 58

warning triggered by @filesource, if PHP < 4.3.0


[ Top ]

PDERROR_TEMPLATEDIR_DOESNT_EXIST  [line 307]

PDERROR_TEMPLATEDIR_DOESNT_EXIST = 64

warning triggered by non-existent template directory


[ Top ]

PDERROR_TEXT_OUTSIDE_LI  [line 275]

PDERROR_TEXT_OUTSIDE_LI = 56

warning triggered when text in a docblock list is not contained in

an <li> opening tag


[ Top ]

PDERROR_TUTORIAL_IS_OWN_CHILD  [line 192]

PDERROR_TUTORIAL_IS_OWN_CHILD = 38

warning triggered when a tutorial lists itself as a child tutorial


[ Top ]

PDERROR_TUTORIAL_IS_OWN_GRANDPA  [line 196]

PDERROR_TUTORIAL_IS_OWN_GRANDPA = 39

warning triggered when a tutorial's child lists the parent tutorial as a child tutorial


[ Top ]

PDERROR_TUTORIAL_NOT_FOUND  [line 188]

PDERROR_TUTORIAL_NOT_FOUND = 37

warning triggered when a tutorial is referenced via @tutorial/{ @tutorial} and is not found


[ Top ]

PDERROR_TUTORIAL_SUBSECTION_NOT_FOUND  [line 220]

PDERROR_TUTORIAL_SUBSECTION_NOT_FOUND = 44

warning triggered when a subsection's title is asked for, but the subsection is not found


[ Top ]

PDERROR_UL_IN_UL  [line 364]

PDERROR_UL_IN_UL = 74

warning triggered if <ul> is nested inside <ul> and not <li>


[ Top ]

PDERROR_UNCLOSED_TAG  [line 279]

PDERROR_UNCLOSED_TAG = 57

warning triggered when a DocBlock html tag is unclosed


[ Top ]

PDERROR_UNKNOWN_COMMANDLINE  [line 148]

PDERROR_UNKNOWN_COMMANDLINE = 27

warning triggered when an entire page is ignored because of @access private


[ Top ]

PDERROR_UNKNOWN_TAG  [line 112]

PDERROR_UNKNOWN_TAG = 18

warning triggered when classes in the same package have the same name


[ Top ]

PDERROR_UNMATCHED_LIST_TAG  [line 172]

PDERROR_UNMATCHED_LIST_TAG = 33

warning triggered when a docblock has an unmatched &lt;ol&gt; or &lt;ul&gt;


[ Top ]

PDERROR_UNMATCHED_TUTORIAL_TAG  [line 180]

PDERROR_UNMATCHED_TUTORIAL_TAG = 35

warning triggered when a docbook tag is not properly matched


[ Top ]

PDERROR_UNTERMINATED_ATTRIB  [line 224]

PDERROR_UNTERMINATED_ATTRIB = 45

warning triggered when a subsection's title is asked for, but the subsection is not found


[ Top ]

PDERROR_UNTERMINATED_ENTITY  [line 311]

PDERROR_UNTERMINATED_ENTITY = 65

warning triggered by an unterminated entity in a tutorial


[ Top ]

PDERROR_UNTERMINATED_INLINE_TAG  [line 52]

PDERROR_UNTERMINATED_INLINE_TAG = 3

warning triggered when an {@inline tag} is not terminated (no } before the * / ending the comment)


[ Top ]


Globals
ErrorTracker   $phpDocumentor_errors [line 770]
Default value:  new ErrorTracker
API Tags:
Name:  $phpDocumentor_errors


[ Top ]

array   $phpDocumentor_error_descrip [line 426]

Error messages for phpDocumentor parser errors

Default value:  array(
        PDERROR_UNTERMINATED_INLINE_TAG => 'Inline tag {@%s} in tag %s is unterminated, "%s"',
        PDERROR_CLASS_EXISTS => 'Class %s already exists in package "%s"',
        PDERROR_CONVERTER_NOT_FOUND => 'Converter %s specified by --output command-line option is not a class',
        PDERROR_NO_CONVERTERS => 'No Converters have been specified by --output command-line option',
        PDERROR_ACCESS_WRONG_PARAM => '@access was passed neither "public" nor "private."  Was passed: "%s"',
        PDERROR_MULTIPLE_ACCESS_TAGS => 'DocBlock has multiple @access tags, illegal. ignoring additional tag "@access %s"',
        PDERROR_MULTIPLE_RETURN_TAGS => 'DocBlock has multiple @return tags, illegal. ignoring additional tag "@return %s %s"',
        PDERROR_MULTIPLE_VAR_TAGS => 'DocBlock has multiple @var tags, illegal. ignoring additional tag "@var %s %s"',
        PDERROR_MULTIPLE_PACKAGE_TAGS => 'DocBlock has multiple @package tags, illegal. ignoring additional tag "@package %s"',
        PDERROR_MULTIPLE_SUBPACKAGE_TAGS => 'DocBlock has multiple @subpackage tags, illegal. ignoring additional tag "@subpackage %s"',
        PDERROR_ILLEGAL_PACKAGENAME => '@%s tag has illegal %s name "%s"',
        PDERROR_OVERRIDDEN_PACKAGE_TAGS => '%s %s\'s DocBlock has @package tag, illegal. ignoring tag "@package %s"',
        PDERROR_OVERRIDDEN_SUBPACKAGE_TAGS => '"%s" %s\'s DocBlock has @subpackage tags, illegal. ignoring tag "@subpackage %s"',
        PDERROR_CLASS_CONFLICT => 'class "%s" has multiple declarations in package %s, in file %s and file %s, documentation will have output errors!',
        PDERROR_MULTIPLE_NAME_TAGS => 'DocBlock has multiple @name tags, illegal. ignoring additional tag "@name %s"',
        PDERROR_PACKAGEOUTPUT_DELETES_PARENT_FILE => '-po (packageoutput) option deletes parent file "%s" containing class "%s."'."\n".'  Try using --defaultpackagename (-dn) %s to include the parent file in the same package as the class',
        PDERROR_GLOBAL_NOT_FOUND => 'global variable %s specified in @global tag was never found',
        PDERROR_MULTIPLE_GLOBAL_TAGS => '@global define tag already used for global variable "%s", ignoring @global %s',
        PDERROR_MALFORMED_GLOBAL_TAG => 'incorrect @global syntax.  Should be @global vartype $varname or @global vartype description',
        PDERROR_UNKNOWN_COMMANDLINE => 'Unknown command-line option "%s" encountered, use phpdoc -h for help',
        PDERROR_NEED_WHITESPACE => 'phpDocumentor programmer error - wordparser whitespace set to false in handleDocBlock, notify developers.  You should never see this error',
        PDERROR_SOURCE_TAG_FUNCTION_NOT_FOUND => '{@source} tag used in a docblock that isn\'t preceding a function',
        PDERROR_UNMATCHED_LIST_TAG => 'unmatched ol or ul tag in DocBlock, parsing will be incorrect',
        PDERROR_CANT_NEST_IN_B => 'Can\'t nest a code, pre, ul, or ol tag in a b tag in phpDocumentor DocBlock (%s tag nested)',
        PDERROR_UNMATCHED_TUTORIAL_TAG => 'While parsing extended documentation, "%s" tag was matched with "%s" endtag, missing endtag'."\ntag contents:\"%s\"",
        PDERROR_CANT_HAVE_INLINE_IN_TAGNAME => 'Can\'t have an inline tag inside a package page XML tag!',
        PDERROR_TUTORIAL_IS_OWN_CHILD => 'Tutorial %s lists itself as its own child in %s, illegal',
        PDERROR_TUTORIAL_IS_OWN_GRANDPA => 'Tutorial %s\'s child %s lists %s as its child in %s, illegal',
        PDERROR_PDFFUNCTION_NO_FUNC => 'Invalid pdffunction syntax: "<pdffunction: />", should be "<pdffunction:functionname [arg="value"...]/>"',
        PDERROR_PDF_TEMPVAR_DOESNT_EXIST => '<pdffunction:%s arg=%s /> called but temporary variable "%s" doesn\'t exist',
        PDERROR_UNTERMINATED_ATTRIB => 'Tutorial tag %s attribute %s is unterminated, current value "%s"',
        PDERROR_NO_CONVERTER_HANDLER => 'Handler for element of type "%s" called, but %s is not a method of %s',
        PDERROR_INLINETAG_IN_SEE => 'Inline tags are not allowed in a @see tag',
        PDERROR_ID_MUST_BE_INLINE => '<%s id="%s"> must be <%s id="{@id %s}">',
        PDERROR_INTERNAL_NOT_CLOSED => '{@internal was never terminated with }}',
        PDERROR_CONVERTER_OVR_GFCT => 'Converter "%s" must override getFormattedClassTrees() but doesn\'t',
        PDERROR_TEXT_OUTSIDE_LI => 'Text cannot be outside of li tag in a DocBlock list, parsing will be incorrect',
        PDERROR_UNCLOSED_TAG => 'Unclosed %s tag in DocBlock, parsing will be incorrect',
        PDERROR_TAG_NOT_HANDLED => '"%s" tag is not available in PHP versions less than 4.3.0, tag ignored',
        PDERROR_MALFORMED_TAG => '"%s" tag was used without any parameters, illegal',
        PDERROR_MULTIPLE_CATEGORY_TAGS => 'package has multiple @category tags, ignoring "@category %s"',
        PDERROR_TEMPLATEDIR_DOESNT_EXIST => 'template directory "%s" does not exist',
        PDERROR_UNTERMINATED_ENTITY => 'entity &%s is unterminated',
        PDERROR_FUNCTION_HAS_NONAME => 'function has no name (PHP error - test your file before parsing!)',
        PDERROR_CANNOT_EXTEND_SELF => 'class %s cannot extend itself - TEST YOUR CODE BEFORE PARSING',
        PDERROR_DUMB_USES => '@uses can only link to string data',
        PDERROR_UL_IN_UL => 'ul/ol tags cannot be directly nested inside ul/ol, nest inside li',
        PDERROR_INVALID_VALUES => 'command %s was passed "%s" but must be one of %s',
        PDERROR_NESTED_INTERNAL => '{@internal}} cannot be nested inside {@internal}}',
        )

API Tags:
Name:  $phpDocumentor_error_descrip


[ Top ]

array   $phpDocumentor_warning_descrip [line 383]

Error messages for phpDocumentor parser warnings

Default value:  array(
        PDERROR_MULTIPLE_PARENT => 'Class %s has multiple possible parents, package inheritance aborted',
        PDERROR_PARENT_NOT_FOUND => 'Class %s parent %s not found',
        PDERROR_INHERITANCE_CONFLICT => 'Class %s in file %s has multiple possible parents named %s.  Cannot resolve name conflict,'."\n".' try ignoring a file that contains the conflicting parent class',
        PDERROR_UNKNOWN_TAG => 'Unknown tag "@%s" used',
        PDERROR_IGNORE_TAG_IGNORED => '@ignore tag used for %s element "%s" will be ignored',
        PDERROR_ELEMENT_IGNORED => "\n".'duplicate %s element "%s" in file %s will be ignored.'."\n".'Use an @ignore tag on the original if you want this case to be documented.',
        PDERROR_PARSEPRIVATE => "entire page %s ignored because of @access private.\nChoose -pp to enable parsing of private elements",
        PDERROR_CLASS_PARENT_NOT_FOUND => "class %s in package %s parent not found in @see parent::%s",
        PDERROR_CLASS_NOT_IN_PACKAGE => "class %s was not found in package %s",
        PDERROR_DB_TEMPLATE_UNTERMINATED => "docblock template never terminated with /**#@-*/",
        PDERROR_PDF_METHOD_DOESNT_EXIST => '<pdffunction:%s /> called, but pdf method "%s" doesn\'t exist',
        PDERROR_TUTORIAL_NOT_FOUND => "tutorial \"%s\" not found, does it exist?",
        PDERROR_CHILD_TUTORIAL_NOT_FOUND => 'child tutorial "%s" listed in %s not found in parent package "%s" subpackage "%s"',
        PDERROR_TUTORIAL_SUBSECTION_NOT_FOUND => 'tutorial %s subsection "%s" doesn\'t exist, but its title was asked for',
        PDERROR_NO_PACKAGE_TAG => 'no @package tag was used in a DocBlock for %s %s',
        PDERROR_PRIVATE_ASSUMED => '%s "%s" is assumed to be @access private because its name starts with _, but has no @access tag',
        PDERROR_EXAMPLE_NOT_FOUND => 'example file "%s" does not exist',
        PDERROR_SOURCE_TAG_IGNORED => '{@source} can only be used in the long description, not in the short description: "%s"',
        PDERROR_PACKAGECAT_SET => 'package %s is already in category %s, will now replace with category %s',
        PDERROR_SOURCECODE_IGNORED => 'sourcecode command-line option is ignored for PHP versions < 4.3.0',
        PDERROR_INHERITDOC_DONT_WORK_HERE => '{@inheritdoc} can only be used in the docblock of a child class',
        PDERROR_EMPTY_EXAMPLE_TITLE => 'Example file found at "%s" has no title, using "%s"',
        PDERROR_DOCBLOCK_CONFLICT => 'Page-level DocBlock precedes "%s %s", use another DocBlock to document the source element',
        PDERROR_NO_PAGE_LEVELDOCBLOCK => 'File "%s" has no page-level DocBlock, use @package in the first DocBlock to create one',
        PDERROR_DOCBLOCK_GOES_CLASS => 'DocBlock would be page-level, but precedes class "%s", use another DocBlock to document the file',
        PDERROR_NO_DOCBOOK_ID => 'Tutorial section %s "%s" has no id="{@id subsection}" tag ({@id} for refentry)',
        PDERROR_BEAUTIFYING_FAILED => 'Beautifying failed: %s',
        PDERROR_NOTODO_INCLUDE => '@todo on an include element is ignored (line %s, file %s)',
        )

API Tags:
Name:  $phpDocumentor_warning_descrip


[ Top ]


Functions
addError  [line 777]

void addError( integer $num, string $data...  )
Parameters:
integer   $num:  error number from Errors.inc
string   $data...:  up to 4 string parameters to sprintf() into the error string for error number $num

API Tags:
See:  ErrorTracker::addError()


[ Top ]
addErrorDie  [line 798]

void addErrorDie( integer $num, string $data...  )

like addError() but exits parsing

Parameters:
integer   $num:  error number from Errors.inc
string   $data...:  up to 4 string parameters to sprintf() into the error string for error number $num

API Tags:
Global:  ErrorTracker $phpDocumentor_errors: repository for all errors generated by phpDocumentor
See:  ErrorTracker::addError()


[ Top ]
addWarning  [line 819]

void addWarning( integer $num, string $data...  )
Parameters:
integer   $num:  warning number from Errors.inc
string   $data...:  up to 4 string parameters to sprintf() into the error string for error number $num

API Tags:
Global:  ErrorTracker $phpDocumentor_errors: repository for all errors generated by phpDocumentor
See:  ErrorTracker::addWarning()


[ Top ]


Documentation generated on Tue, 24 Oct 2006 09:22:24 -0500 by phpDocumentor 1.3.1