mirror of
https://github.com/codeguy/php-the-right-way.git
synced 2025-08-17 11:10:37 +02:00
Updated the URLs to new documentation after some feedback
This commit is contained in:
@@ -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
|
||||||
|
Reference in New Issue
Block a user