X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FDBIx%2FClass%2FManual%2FReading.pod;h=02b6dcd386269086ce0468ffa774a1b1c7c11971;hb=7603d2a5b93541932b94593c0f12e12386c83ef0;hp=6aa4830bfd67531489b7a084d3c062981b5faf8c;hpb=8457faf7d3ab7484b4da1f0a68d3b0231e7d21bf;p=dbsrgits%2FDBIx-Class.git diff --git a/lib/DBIx/Class/Manual/Reading.pod b/lib/DBIx/Class/Manual/Reading.pod index 6aa4830..02b6dcd 100644 --- a/lib/DBIx/Class/Manual/Reading.pod +++ b/lib/DBIx/Class/Manual/Reading.pod @@ -34,13 +34,18 @@ object that they will be called on. =item * -Each method starts with a "head2" statement of it's name. +Each method starts with a "head2" statement of its name. + +Just the plain method name, not an example of how to call it, or a link. +This is to ensure easy linking to method documentation from other POD. =item * -The header is followed by a one-item list. +The header is followed by a two-item list. This contains a description +of the arguments the method is expected to take, and an indication of +what the method returns. -The single item provides a list of all possible values for the +The first item provides a list of all possible values for the arguments of the method in order, separated by C<, >, preceeded by the text "Arguments: " @@ -70,23 +75,59 @@ $var - A scalar (string or numeric) variable. =item * +%var - A hashref variable (list of key/value pairs) - rarely used in DBIx::Class. + +Reading an argument as a hash variable will consume all subsequent +method arguments, use with caution. + +=item * + +@var - An array variable (list of values). + +Reading an argument as a array variable will consume all subsequent +method arguments, use with caution. + +=item * + ? - Optional, should be placed after the argument type and name. + ## Correct + \%myhashref|\@myarrayref? + + ## Wrong + \%myhashref?|\@myarrayref + +Applies to the entire argument. + +Optional arguments can be left out of method calls, unless the caller +needs to pass in any of the following arguments. In which case the +caller should pass C in place of the missing argument. + =item * -| - Alternate argument types. +| - Alternate argument content types. + +At least one of these must be supplied unless the argument is also +marked optional. =back -NOTES: +The second item starts with the text "Return value:". The remainder of +the line is either the text "undefined", a text describing the result of +the method, or a variable with a descriptive name. -If several arguments are optional, it is always possible to pass -C as one optional argument in order to skip it and provide a -value for the following ones. This does not need to be indicated in -the Arguments line, it is assumed. + ## Good examples + =item Return value: undefined + =item Return value: A schema object + =item Return value: $classname -The C for optional arguments always applies to the entire argument -value, not a particular type or argument. + ## Bad examples + =item Return value: The names + +"undefined" means the method does not deliberately return a value, and +the caller should not use or rely on anything it does return. (Perl +functions always return something, usually the result of the last code +statement, if there is no explicit return statement.) =item * @@ -98,6 +139,9 @@ the method does. The description paragraph is followed by another list. Each item in the list explains one of the possible argument/type combinations. +This list may be omitted if the author feels that the variable names are +self-explanatory enough to not require it. Use best judgement. + =item * The argument list is followed by some examples of how to use the