Updated the URLs to new documentation after some feedback

This commit is contained in:
Gareth Evans
2014-06-23 09:26:08 +01:00
parent b717500558
commit c3c45a8969

View File

@@ -4,7 +4,7 @@ anchor: phpdoc
# PHPDoc {#phpdoc} # PHPDoc {#phpdoc}
PHPDoc is an informal standard for commenting PHP code. There are a *lot* of different [tags](http://manual.phpdoc.org/HTMLSmartyConverter/PHP/phpDocumentor/tutorial_tags.pkg.html) available. The full list of tags and examples can be found at the [PHPDoc manual](http://manual.phpdoc.org/HTMLSmartyConverter/PHP/phpDocumentor/tutorial_tags.pkg.html). PHPDoc is an informal standard for commenting PHP code. There are a *lot* of different [tags](http://www.phpdoc.org/docs/latest/references/phpdoc/tags/index.html) available. The full list of tags and examples can be found at the [PHPDoc manual](http://www.phpdoc.org/docs/latest/index.html).
Below is an example of how you might comment a class and a method; Below is an example of how you might comment a class and a method;
@@ -12,7 +12,7 @@ Below is an example of how you might comment a class and a method;
<?php <?php
/** /**
* @author A Name <a.name@example.com> * @author A Name <a.name@example.com>
* @link http://manual.phpdoc.org/HTMLSmartyConverter/PHP/phpDocumentor/tutorial_tags.link.pkg.html * @link http://www.phpdoc.org/docs/latest/index.html
* @package demo * @package demo
*/ */
class DateTimeHelper class DateTimeHelper