jenkins-bot has submitted this change and it was merged. Change subject: Some docs+ styling ......................................................................
Some docs+ styling Mainly because of the doxygen output Change-Id: Ib11ddb66581e2c47379b6f44181c7afc4e29783a --- M includes/exceptions/DataItemException.php M includes/exceptions/InvalidNamespaceException.php M includes/exceptions/InvalidResultException.php M includes/exceptions/InvalidSemanticDataException.php M includes/exceptions/InvalidStoreException.php M includes/formatters/ApiQueryResultFormatter.php M includes/formatters/ArrayFormatter.php M includes/formatters/MessageFormatter.php M includes/formatters/ParameterFormatterFactory.php M includes/formatters/ParserParameterFormatter.php M includes/formatters/TableFormatter.php M includes/parserhooks/AskParserFunction.php M includes/parserhooks/ConceptParserFunction.php M includes/parserhooks/DeclareParserFunction.php M includes/parserhooks/DocumentationParserFunction.php M includes/parserhooks/InfoParserFunction.php M includes/parserhooks/ParserFunctionFactory.php M includes/parserhooks/RecurringEventsParserFunction.php M includes/parserhooks/SetParserFunction.php M includes/parserhooks/ShowParserFunction.php M includes/parserhooks/SubobjectParserFunction.php M tests/phpunit/includes/formatters/ApiQueryResultFormatterTest.php M tests/phpunit/includes/formatters/MessageFormatterTest.php M tests/phpunit/includes/formatters/ParameterFormatterFactoryTest.php M tests/phpunit/includes/formatters/ParserParameterFormatterTest.php M tests/phpunit/includes/formatters/TableFormatterTest.php M tests/phpunit/includes/parserhooks/AskParserFunctionTest.php M tests/phpunit/includes/parserhooks/ConceptParserFunctionTest.php M tests/phpunit/includes/parserhooks/DeclareParserFunctionTest.php M tests/phpunit/includes/parserhooks/DocumentationParserFunctionTest.php M tests/phpunit/includes/parserhooks/InfoParserFunctionTest.php M tests/phpunit/includes/parserhooks/ParserFunctionFactoryTest.php M tests/phpunit/includes/parserhooks/RecurringEventsParserFunctionTest.php M tests/phpunit/includes/parserhooks/SetParserFunctionTest.php M tests/phpunit/includes/parserhooks/ShowParserFunctionTest.php M tests/phpunit/includes/parserhooks/SubobjectParserFunctionTest.php 36 files changed, 93 insertions(+), 127 deletions(-) Approvals: Mwjames: Looks good to me, approved jenkins-bot: Verified diff --git a/includes/exceptions/DataItemException.php b/includes/exceptions/DataItemException.php index d33ab32..c888127 100644 --- a/includes/exceptions/DataItemException.php +++ b/includes/exceptions/DataItemException.php @@ -42,5 +42,6 @@ * SMWDataItemException * * @deprecated since SMW 1.9 + * @codeCoverageIgnore */ class_alias( 'SMW\DataItemException', 'SMWDataItemException' ); diff --git a/includes/exceptions/InvalidNamespaceException.php b/includes/exceptions/InvalidNamespaceException.php index 7a17237..ff9d1d2 100644 --- a/includes/exceptions/InvalidNamespaceException.php +++ b/includes/exceptions/InvalidNamespaceException.php @@ -22,10 +22,10 @@ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * http://www.gnu.org/copyleft/gpl.html * - * @since 1.9 - * * @file - * @ingroup Exception + * + * @license GNU GPL v2+ + * @since 1.9 * * @author mwjames */ diff --git a/includes/exceptions/InvalidResultException.php b/includes/exceptions/InvalidResultException.php index ebd757f..e8930e4 100644 --- a/includes/exceptions/InvalidResultException.php +++ b/includes/exceptions/InvalidResultException.php @@ -22,11 +22,11 @@ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * http://www.gnu.org/copyleft/gpl.html * - * @since 1.9 - * * @file * * @license GNU GPL v2+ + * @since 1.9 + * * @author mwjames */ diff --git a/includes/exceptions/InvalidSemanticDataException.php b/includes/exceptions/InvalidSemanticDataException.php index 210ea44..2f3a195 100644 --- a/includes/exceptions/InvalidSemanticDataException.php +++ b/includes/exceptions/InvalidSemanticDataException.php @@ -22,10 +22,10 @@ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * http://www.gnu.org/copyleft/gpl.html * - * @since 1.9 - * * @file - * @ingroup Exception + * + * @license GNU GPL v2+ + * @since 1.9 * * @author mwjames */ diff --git a/includes/exceptions/InvalidStoreException.php b/includes/exceptions/InvalidStoreException.php index f12c676..b43c09d 100644 --- a/includes/exceptions/InvalidStoreException.php +++ b/includes/exceptions/InvalidStoreException.php @@ -22,10 +22,10 @@ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * http://www.gnu.org/copyleft/gpl.html * - * @since 1.9 - * * @file - * @ingroup Exception + * + * @license GNU GPL v2+ + * @since 1.9 * * @author mwjames */ diff --git a/includes/formatters/ApiQueryResultFormatter.php b/includes/formatters/ApiQueryResultFormatter.php index d98ea80..f561c9e 100644 --- a/includes/formatters/ApiQueryResultFormatter.php +++ b/includes/formatters/ApiQueryResultFormatter.php @@ -23,11 +23,11 @@ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * http://www.gnu.org/copyleft/gpl.html * - * @since 1.9 - * * @file * * @license GNU GPL v2+ + * @since 1.9 + * * @author mwjames */ diff --git a/includes/formatters/ArrayFormatter.php b/includes/formatters/ArrayFormatter.php index 108fd33..f1b8c56 100644 --- a/includes/formatters/ArrayFormatter.php +++ b/includes/formatters/ArrayFormatter.php @@ -20,11 +20,11 @@ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * http://www.gnu.org/copyleft/gpl.html * - * @since 1.9 - * * @file * * @license GNU GPL v2+ + * @since 1.9 + * * @author mwjames */ diff --git a/includes/formatters/MessageFormatter.php b/includes/formatters/MessageFormatter.php index d6a6b48..c3f19f9 100644 --- a/includes/formatters/MessageFormatter.php +++ b/includes/formatters/MessageFormatter.php @@ -24,12 +24,11 @@ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * http://www.gnu.org/copyleft/gpl.html * - * @since 1.9 - * * @file - * @ingroup Formatter * - * @licence GNU GPL v2+ + * @license GNU GPL v2+ + * @since 1.9 + * * @author mwjames */ diff --git a/includes/formatters/ParameterFormatterFactory.php b/includes/formatters/ParameterFormatterFactory.php index a0a9119..cad7a1e 100644 --- a/includes/formatters/ParameterFormatterFactory.php +++ b/includes/formatters/ParameterFormatterFactory.php @@ -20,11 +20,11 @@ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * http://www.gnu.org/copyleft/gpl.html * - * @since 1.9 - * * @file * * @license GNU GPL v2+ + * @since 1.9 + * * @author mwjames */ diff --git a/includes/formatters/ParserParameterFormatter.php b/includes/formatters/ParserParameterFormatter.php index 32f00ba..a93dd92 100644 --- a/includes/formatters/ParserParameterFormatter.php +++ b/includes/formatters/ParserParameterFormatter.php @@ -20,11 +20,11 @@ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * http://www.gnu.org/copyleft/gpl.html * - * @since 1.9 - * * @file * * @license GNU GPL v2+ + * @since 1.9 + * * @author mwjames */ diff --git a/includes/formatters/TableFormatter.php b/includes/formatters/TableFormatter.php index 3bde53e..f72ce5f 100644 --- a/includes/formatters/TableFormatter.php +++ b/includes/formatters/TableFormatter.php @@ -22,11 +22,11 @@ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * http://www.gnu.org/copyleft/gpl.html * - * @since 1.9 - * * @file * * @license GNU GPL v2+ + * @since 1.9 + * * @author mwjames */ diff --git a/includes/parserhooks/AskParserFunction.php b/includes/parserhooks/AskParserFunction.php index a2104f3..8512054 100644 --- a/includes/parserhooks/AskParserFunction.php +++ b/includes/parserhooks/AskParserFunction.php @@ -25,13 +25,11 @@ * * @see http://www.semantic-mediawiki.org/wiki/Help:Ask * - * @since 1.9 - * * @file - * @ingroup SMW - * @ingroup ParserFunction * - * @licence GNU GPL v2+ + * @license GNU GPL v2+ + * @since 1.9 + * * @author Markus Krötzsch * @author Jeroen De Dauw * @author mwjames @@ -40,7 +38,6 @@ /** * Class that provides the {{#ask}} parser function * - * @ingroup SMW * @ingroup ParserFunction */ class AskParserFunction { diff --git a/includes/parserhooks/ConceptParserFunction.php b/includes/parserhooks/ConceptParserFunction.php index 5c2820d..3a5a6d9 100644 --- a/includes/parserhooks/ConceptParserFunction.php +++ b/includes/parserhooks/ConceptParserFunction.php @@ -28,13 +28,11 @@ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * http://www.gnu.org/copyleft/gpl.html * - * @since 1.9 - * * @file - * @ingroup SMW - * @ingroup ParserFunction * - * @licence GNU GPL v2+ + * @license GNU GPL v2+ + * @since 1.9 + * * @author Markus Krötzsch * @author Jeroen De Dauw * @author mwjames @@ -43,7 +41,6 @@ /** * Class that provides the {{#concept}} parser function * - * @ingroup SMW * @ingroup ParserFunction */ class ConceptParserFunction { diff --git a/includes/parserhooks/DeclareParserFunction.php b/includes/parserhooks/DeclareParserFunction.php index 3bf15f2..397087e 100644 --- a/includes/parserhooks/DeclareParserFunction.php +++ b/includes/parserhooks/DeclareParserFunction.php @@ -26,13 +26,11 @@ * * @see http://semantic-mediawiki.org/wiki/Help:Argument_declaration_in_templates * - * @since 1.5.3 - * * @file - * @ingroup SMW - * @ingroup ParserFunction * - * @licence GNU GPL v2+ + * @license GNU GPL v2+ + * @since 1.5.3 + * * @author Markus Krötzsch * @author Jeroen De Dauw */ @@ -40,7 +38,6 @@ /** * Class that provides the {{#declare}} parser function * - * @ingroup SMW * @ingroup ParserFunction */ class DeclareParserFunction { diff --git a/includes/parserhooks/DocumentationParserFunction.php b/includes/parserhooks/DocumentationParserFunction.php index 61830c7..6eb1250 100644 --- a/includes/parserhooks/DocumentationParserFunction.php +++ b/includes/parserhooks/DocumentationParserFunction.php @@ -23,13 +23,11 @@ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * http://www.gnu.org/copyleft/gpl.html * - * @since 1.6 - * * @file - * @ingroup SMW - * @ingroup ParserFunction * - * @licence GNU GPL v2+ + * @license GNU GPL v2+ + * @since 1.6 + * * @author Jeroen De Dauw < [email protected] > */ @@ -37,7 +35,6 @@ * Class that provides the {{#smwdoc}} parser function, which displays parameter * documentation for a specified result format. * - * @ingroup SMW * @ingroup ParserFunction */ class DocumentationParserFunction extends \ParserHook { diff --git a/includes/parserhooks/InfoParserFunction.php b/includes/parserhooks/InfoParserFunction.php index 08f97e8..febbd11 100644 --- a/includes/parserhooks/InfoParserFunction.php +++ b/includes/parserhooks/InfoParserFunction.php @@ -23,13 +23,11 @@ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * http://www.gnu.org/copyleft/gpl.html * - * @since 1.5.3 - * * @file - * @ingroup SMW - * @ingroup ParserFunction * - * @licence GNU GPL v2+ + * @license GNU GPL v2+ + * @since 1.5.3 + * * @author Markus Krötzsch * @author Jeroen De Dauw */ @@ -37,7 +35,6 @@ /** * Class that provides the {{#info}} parser function * - * @ingroup SMW * @ingroup ParserFunction */ class InfoParserFunction extends \ParserHook { diff --git a/includes/parserhooks/ParserFunctionFactory.php b/includes/parserhooks/ParserFunctionFactory.php index c8d76da..8f77e8c 100644 --- a/includes/parserhooks/ParserFunctionFactory.php +++ b/includes/parserhooks/ParserFunctionFactory.php @@ -22,12 +22,11 @@ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * http://www.gnu.org/copyleft/gpl.html * - * - * @since 1.9 - * * @file * * @license GNU GPL v2+ + * @since 1.9 + * * @author mwjames */ diff --git a/includes/parserhooks/RecurringEventsParserFunction.php b/includes/parserhooks/RecurringEventsParserFunction.php index 950350b..83b8eb6 100644 --- a/includes/parserhooks/RecurringEventsParserFunction.php +++ b/includes/parserhooks/RecurringEventsParserFunction.php @@ -24,11 +24,11 @@ * * @see http://semantic-mediawiki.org/wiki/Help:Recurring_events * - * @since 1.9 - * * @file * * @license GNU GPL v2+ + * @since 1.9 + * * @author mwjames */ diff --git a/includes/parserhooks/SetParserFunction.php b/includes/parserhooks/SetParserFunction.php index 4839cb9..b7a12bb 100644 --- a/includes/parserhooks/SetParserFunction.php +++ b/includes/parserhooks/SetParserFunction.php @@ -25,11 +25,11 @@ * @see http://semantic-mediawiki.org/wiki/Help:Properties_and_types#Silent_annotations_using_.23set * @see http://www.semantic-mediawiki.org/wiki/Help:Setting_values * - * @since 1.9 - * * @file * * @license GNU GPL v2+ + * @since 1.9 + * * @author Markus Krötzsch * @author Jeroen De Dauw * @author mwjames diff --git a/includes/parserhooks/ShowParserFunction.php b/includes/parserhooks/ShowParserFunction.php index c354a33..88712d3 100644 --- a/includes/parserhooks/ShowParserFunction.php +++ b/includes/parserhooks/ShowParserFunction.php @@ -24,20 +24,17 @@ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * http://www.gnu.org/copyleft/gpl.html * - * @since 1.9 - * * @file - * @ingroup SMW - * @ingroup ParserFunction * - * @licence GNU GPL v2+ + * @license GNU GPL v2+ + * @since 1.9 + * * @author mwjames */ /** * Class that provides the {{#show}} parser function * - * @ingroup SMW * @ingroup ParserFunction */ class ShowParserFunction { diff --git a/includes/parserhooks/SubobjectParserFunction.php b/includes/parserhooks/SubobjectParserFunction.php index d41dcb9..dcfa10f 100644 --- a/includes/parserhooks/SubobjectParserFunction.php +++ b/includes/parserhooks/SubobjectParserFunction.php @@ -24,11 +24,11 @@ * * @see http://www.semantic-mediawiki.org/wiki/Help:Subobject * - * @since 1.9 - * * @file * * @license GNU GPL v2+ + * @since 1.9 + * * @author mwjames */ diff --git a/tests/phpunit/includes/formatters/ApiQueryResultFormatterTest.php b/tests/phpunit/includes/formatters/ApiQueryResultFormatterTest.php index ea2767a..0c42c6e 100644 --- a/tests/phpunit/includes/formatters/ApiQueryResultFormatterTest.php +++ b/tests/phpunit/includes/formatters/ApiQueryResultFormatterTest.php @@ -25,11 +25,11 @@ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * http://www.gnu.org/copyleft/gpl.html * - * @since 1.9 - * * @file * * @license GNU GPL v2+ + * @since 1.9 + * * @author mwjames */ diff --git a/tests/phpunit/includes/formatters/MessageFormatterTest.php b/tests/phpunit/includes/formatters/MessageFormatterTest.php index 2275e77..c0adbae 100644 --- a/tests/phpunit/includes/formatters/MessageFormatterTest.php +++ b/tests/phpunit/includes/formatters/MessageFormatterTest.php @@ -24,17 +24,15 @@ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * http://www.gnu.org/copyleft/gpl.html * - * @since 1.9 - * * @file - * @ingroup Test * - * @licence GNU GPL v2+ + * @license GNU GPL v2+ + * @since 1.9 + * * @author mwjames */ /** - * Tests for the MessageFormatter class * @covers \SMW\MessageFormatter * * @ingroup Test diff --git a/tests/phpunit/includes/formatters/ParameterFormatterFactoryTest.php b/tests/phpunit/includes/formatters/ParameterFormatterFactoryTest.php index 26e440f..1b9b675 100644 --- a/tests/phpunit/includes/formatters/ParameterFormatterFactoryTest.php +++ b/tests/phpunit/includes/formatters/ParameterFormatterFactoryTest.php @@ -22,11 +22,11 @@ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * http://www.gnu.org/copyleft/gpl.html * - * @since 1.9 - * * @file * * @license GNU GPL v2+ + * @since 1.9 + * * @author mwjames */ diff --git a/tests/phpunit/includes/formatters/ParserParameterFormatterTest.php b/tests/phpunit/includes/formatters/ParserParameterFormatterTest.php index 4b430e5..3144036 100644 --- a/tests/phpunit/includes/formatters/ParserParameterFormatterTest.php +++ b/tests/phpunit/includes/formatters/ParserParameterFormatterTest.php @@ -22,17 +22,15 @@ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * http://www.gnu.org/copyleft/gpl.html * - * @since 1.9 - * * @file - * @ingroup Test * - * @licence GNU GPL v2+ + * @license GNU GPL v2+ + * @since 1.9 + * * @author mwjames */ /** - * Tests for the ParserParameterFormatter class * @covers \SMW\ParserParameterFormatter * * @ingroup Test diff --git a/tests/phpunit/includes/formatters/TableFormatterTest.php b/tests/phpunit/includes/formatters/TableFormatterTest.php index df92097..b1c06ee 100644 --- a/tests/phpunit/includes/formatters/TableFormatterTest.php +++ b/tests/phpunit/includes/formatters/TableFormatterTest.php @@ -24,11 +24,11 @@ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * http://www.gnu.org/copyleft/gpl.html * - * @since 1.9 - * * @file * * @license GNU GPL v2+ + * @since 1.9 + * * @author mwjames */ diff --git a/tests/phpunit/includes/parserhooks/AskParserFunctionTest.php b/tests/phpunit/includes/parserhooks/AskParserFunctionTest.php index adf35df..a34653d 100644 --- a/tests/phpunit/includes/parserhooks/AskParserFunctionTest.php +++ b/tests/phpunit/includes/parserhooks/AskParserFunctionTest.php @@ -30,17 +30,15 @@ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * http://www.gnu.org/copyleft/gpl.html * - * @since 1.9 - * * @file - * @ingroup Test * - * @licence GNU GPL v2+ + * @license GNU GPL v2+ + * @since 1.9 + * * @author mwjames */ /** - * Tests for the AskParserFunction class * @covers \SMW\AskParserFunction * * @ingroup Test diff --git a/tests/phpunit/includes/parserhooks/ConceptParserFunctionTest.php b/tests/phpunit/includes/parserhooks/ConceptParserFunctionTest.php index 89720dc..ea9bb20 100644 --- a/tests/phpunit/includes/parserhooks/ConceptParserFunctionTest.php +++ b/tests/phpunit/includes/parserhooks/ConceptParserFunctionTest.php @@ -27,17 +27,15 @@ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * http://www.gnu.org/copyleft/gpl.html * - * @since 1.9 - * * @file - * @ingroup Test * - * @licence GNU GPL v2+ + * @license GNU GPL v2+ + * @since 1.9 + * * @author mwjames */ /** - * Tests for the ConceptParserFunction class * @covers \SMW\ConceptParserFunction * * @ingroup Test diff --git a/tests/phpunit/includes/parserhooks/DeclareParserFunctionTest.php b/tests/phpunit/includes/parserhooks/DeclareParserFunctionTest.php index 6b5a9af..8331977 100644 --- a/tests/phpunit/includes/parserhooks/DeclareParserFunctionTest.php +++ b/tests/phpunit/includes/parserhooks/DeclareParserFunctionTest.php @@ -22,17 +22,16 @@ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * http://www.gnu.org/copyleft/gpl.html * - * @since 1.9 - * * @file - * @ingroup Test * - * @licence GNU GPL v2+ + * @license GNU GPL v2+ + * @since 1.9 + * * @author mwjames */ /** - * Tests for the DeclareParserFunction class + * @covers \SMW\DeclareParserFunction * * @ingroup Test * diff --git a/tests/phpunit/includes/parserhooks/DocumentationParserFunctionTest.php b/tests/phpunit/includes/parserhooks/DocumentationParserFunctionTest.php index 86652ef..2345616 100644 --- a/tests/phpunit/includes/parserhooks/DocumentationParserFunctionTest.php +++ b/tests/phpunit/includes/parserhooks/DocumentationParserFunctionTest.php @@ -22,17 +22,16 @@ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * http://www.gnu.org/copyleft/gpl.html * - * @since 1.9 - * * @file - * @ingroup Test * - * @licence GNU GPL v2+ + * @license GNU GPL v2+ + * @since 1.9 + * * @author mwjames */ /** - * Tests for the DocumentationParserFunction class + * @covers \SMW\DocumentationParserFunction * * @ingroup Test * diff --git a/tests/phpunit/includes/parserhooks/InfoParserFunctionTest.php b/tests/phpunit/includes/parserhooks/InfoParserFunctionTest.php index 5794ce4..2333f85 100644 --- a/tests/phpunit/includes/parserhooks/InfoParserFunctionTest.php +++ b/tests/phpunit/includes/parserhooks/InfoParserFunctionTest.php @@ -22,17 +22,16 @@ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * http://www.gnu.org/copyleft/gpl.html * - * @since 1.9 - * * @file - * @ingroup Test * - * @licence GNU GPL v2+ + * @license GNU GPL v2+ + * @since 1.9 + * * @author mwjames */ /** - * Tests for the InfoParserFunction class + * @covers \SMW\InfoParserFunction * * @ingroup Test * diff --git a/tests/phpunit/includes/parserhooks/ParserFunctionFactoryTest.php b/tests/phpunit/includes/parserhooks/ParserFunctionFactoryTest.php index 5c7fde5..649fb87 100644 --- a/tests/phpunit/includes/parserhooks/ParserFunctionFactoryTest.php +++ b/tests/phpunit/includes/parserhooks/ParserFunctionFactoryTest.php @@ -25,11 +25,11 @@ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * http://www.gnu.org/copyleft/gpl.html * - * @since 1.9 - * * @file * * @license GNU GPL v2+ + * @since 1.9 + * * @author mwjames */ diff --git a/tests/phpunit/includes/parserhooks/RecurringEventsParserFunctionTest.php b/tests/phpunit/includes/parserhooks/RecurringEventsParserFunctionTest.php index 17f5399..f66abbd 100644 --- a/tests/phpunit/includes/parserhooks/RecurringEventsParserFunctionTest.php +++ b/tests/phpunit/includes/parserhooks/RecurringEventsParserFunctionTest.php @@ -29,11 +29,11 @@ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * http://www.gnu.org/copyleft/gpl.html * - * @since 1.9 - * * @file * * @license GNU GPL v2+ + * @since 1.9 + * * @author mwjames */ diff --git a/tests/phpunit/includes/parserhooks/SetParserFunctionTest.php b/tests/phpunit/includes/parserhooks/SetParserFunctionTest.php index e833683..db8e4f3 100644 --- a/tests/phpunit/includes/parserhooks/SetParserFunctionTest.php +++ b/tests/phpunit/includes/parserhooks/SetParserFunctionTest.php @@ -30,17 +30,15 @@ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * http://www.gnu.org/copyleft/gpl.html * - * @since 1.9 - * * @file - * @ingroup Test * - * @licence GNU GPL v2+ + * @license GNU GPL v2+ + * @since 1.9 + * * @author mwjames */ /** - * Tests for the SetParserFunction class * @covers \SMW\SetParserFunction * * @ingroup Test diff --git a/tests/phpunit/includes/parserhooks/ShowParserFunctionTest.php b/tests/phpunit/includes/parserhooks/ShowParserFunctionTest.php index 04f4663..181a433 100644 --- a/tests/phpunit/includes/parserhooks/ShowParserFunctionTest.php +++ b/tests/phpunit/includes/parserhooks/ShowParserFunctionTest.php @@ -28,17 +28,15 @@ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * http://www.gnu.org/copyleft/gpl.html * - * @since 1.9 - * * @file - * @ingroup Test * - * @licence GNU GPL v2+ + * @license GNU GPL v2+ + * @since 1.9 + * * @author mwjames */ /** - * Tests for the ShowParserFunction class * @covers \SMW\ShowParserFunction * * @ingroup Test diff --git a/tests/phpunit/includes/parserhooks/SubobjectParserFunctionTest.php b/tests/phpunit/includes/parserhooks/SubobjectParserFunctionTest.php index 8b34b9d..2d138ea 100644 --- a/tests/phpunit/includes/parserhooks/SubobjectParserFunctionTest.php +++ b/tests/phpunit/includes/parserhooks/SubobjectParserFunctionTest.php @@ -30,11 +30,11 @@ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * http://www.gnu.org/copyleft/gpl.html * - * @since 1.9 - * * @file * * @license GNU GPL v2+ + * @since 1.9 + * * @author mwjames */ -- To view, visit https://gerrit.wikimedia.org/r/74271 To unsubscribe, visit https://gerrit.wikimedia.org/r/settings Gerrit-MessageType: merged Gerrit-Change-Id: Ib11ddb66581e2c47379b6f44181c7afc4e29783a Gerrit-PatchSet: 1 Gerrit-Project: mediawiki/extensions/SemanticMediaWiki Gerrit-Branch: master Gerrit-Owner: Mwjames <[email protected]> Gerrit-Reviewer: Mwjames <[email protected]> Gerrit-Reviewer: jenkins-bot _______________________________________________ MediaWiki-commits mailing list [email protected] https://lists.wikimedia.org/mailman/listinfo/mediawiki-commits
