Lucas Werkmeister (WMDE) has uploaded a new change for review. ( https://gerrit.wikimedia.org/r/383553 )
Change subject: Change deprecated @type to @var ...................................................................... Change deprecated @type to @var Found and fixed with wmde/WikibaseCodeSniffer#8 [1]. [1]: https://github.com/wmde/WikibaseCodeSniffer/pull/8 Change-Id: I855fca0b4279f351802d05a6520cde747a3c13d0 --- M includes/ConstraintCheck/Context/AbstractContext.php M includes/ConstraintCheck/Context/MainSnakContext.php M includes/ConstraintCheck/Context/StatementContext.php M includes/ConstraintCheck/Helper/LoggingHelper.php 4 files changed, 6 insertions(+), 6 deletions(-) git pull ssh://gerrit.wikimedia.org:29418/mediawiki/extensions/WikibaseQualityConstraints refs/changes/53/383553/1 diff --git a/includes/ConstraintCheck/Context/AbstractContext.php b/includes/ConstraintCheck/Context/AbstractContext.php index edea51e..21b2224 100644 --- a/includes/ConstraintCheck/Context/AbstractContext.php +++ b/includes/ConstraintCheck/Context/AbstractContext.php @@ -12,12 +12,12 @@ abstract class AbstractContext implements Context { /** - * @type EntityDocument + * @var EntityDocument */ protected $entity; /** - * @type Snak + * @var Snak */ protected $snak; diff --git a/includes/ConstraintCheck/Context/MainSnakContext.php b/includes/ConstraintCheck/Context/MainSnakContext.php index 7770484..6f83a1b 100644 --- a/includes/ConstraintCheck/Context/MainSnakContext.php +++ b/includes/ConstraintCheck/Context/MainSnakContext.php @@ -11,7 +11,7 @@ class MainSnakContext extends ApiV2Context { /** - * @type Statement + * @var Statement */ private $statement; diff --git a/includes/ConstraintCheck/Context/StatementContext.php b/includes/ConstraintCheck/Context/StatementContext.php index 45ff410..46bf1ad 100644 --- a/includes/ConstraintCheck/Context/StatementContext.php +++ b/includes/ConstraintCheck/Context/StatementContext.php @@ -14,7 +14,7 @@ class StatementContext extends AbstractContext { /** - * @type Statement + * @var Statement */ private $statement; diff --git a/includes/ConstraintCheck/Helper/LoggingHelper.php b/includes/ConstraintCheck/Helper/LoggingHelper.php index fc63453..7fda118 100644 --- a/includes/ConstraintCheck/Helper/LoggingHelper.php +++ b/includes/ConstraintCheck/Helper/LoggingHelper.php @@ -24,12 +24,12 @@ private $dataFactory; /** - * @type LoggerInterface + * @var LoggerInterface */ private $logger; /** - * @type float[] + * @var float[] */ private $constraintCheckDurationLimits; -- To view, visit https://gerrit.wikimedia.org/r/383553 To unsubscribe, visit https://gerrit.wikimedia.org/r/settings Gerrit-MessageType: newchange Gerrit-Change-Id: I855fca0b4279f351802d05a6520cde747a3c13d0 Gerrit-PatchSet: 1 Gerrit-Project: mediawiki/extensions/WikibaseQualityConstraints Gerrit-Branch: master Gerrit-Owner: Lucas Werkmeister (WMDE) <[email protected]> _______________________________________________ MediaWiki-commits mailing list [email protected] https://lists.wikimedia.org/mailman/listinfo/mediawiki-commits
