From 1fe1d9a82211faa6a668c5dc0be91836311fa7b3 Mon Sep 17 00:00:00 2001 From: worikgh <5387413+worikgh@users.noreply.github.com> Date: Wed, 28 Feb 2018 11:45:44 +1300 Subject: [PATCH] Remove deprecated @package and @subpackage On Slack #General at 11:17 nightjarnz maintains that @package is deprecated. --- docs/en/05_Contributing/14_PHP_Coding_Conventions.md | 1 - 1 file changed, 1 deletion(-) diff --git a/docs/en/05_Contributing/14_PHP_Coding_Conventions.md b/docs/en/05_Contributing/14_PHP_Coding_Conventions.md index 6133fc223..6f9fe6ab9 100644 --- a/docs/en/05_Contributing/14_PHP_Coding_Conventions.md +++ b/docs/en/05_Contributing/14_PHP_Coding_Conventions.md @@ -90,7 +90,6 @@ public function getTitle() Use [phpdoc](http://phpdoc.org/) syntax before each definition (see [tutorial](http://manual.phpdoc.org/HTMLSmartyConverter/HandS/phpDocumentor/tutorial_phpDocumentor.quickstart.pkg.html) and [tag overview](http://manual.phpdoc.org/HTMLSmartyConverter/HandS/phpDocumentor/tutorial_tags.pkg.html)). - * All class definitions and PHP files should have `@package` and `@subpackage`. * Methods should include at least `@param` and `@return`. * Include a blank line after the description. * Use `{@link MyOtherClass}` and `{@link MyOtherClass->otherMethod}` for inline references.