Jeroen De Dauw has uploaded a new change for review. https://gerrit.wikimedia.org/r/87579
Change subject: Remove clutter comments ...................................................................... Remove clutter comments Change-Id: I35a4b3cf3f5a9f379c7c2e4b4cb24306359aedda --- M src/PropertyDataValueTypeLookup.php M src/SQLStore/ClaimStore/ClaimInserter.php M src/SQLStore/ClaimStore/ClaimRow.php M src/SQLStore/ClaimStore/ClaimRowBuilder.php M src/SQLStore/DVHandler/BooleanHandler.php M src/SQLStore/DVHandler/EntityIdHandler.php M src/SQLStore/DVHandler/GeoCoordinateHandler.php M src/SQLStore/DVHandler/IriHandler.php M src/SQLStore/DVHandler/MonolingualTextHandler.php M src/SQLStore/DVHandler/NumberHandler.php M src/SQLStore/DVHandler/StringHandler.php M src/SQLStore/DataValueHandler.php M src/SQLStore/DataValueHandlers.php M src/SQLStore/DataValueTable.php M src/SQLStore/Engine/DescriptionMatchFinder.php M src/SQLStore/Engine/Engine.php M src/SQLStore/EntityIdTransformer.php M src/SQLStore/EntityInserter.php M src/SQLStore/EntityRemover.php M src/SQLStore/EntityTable.php M src/SQLStore/EntityUpdater.php M src/SQLStore/Factory.php M src/SQLStore/InternalEntityIdFinder.php M src/SQLStore/InternalEntityIdInterpreter.php M src/SQLStore/Schema.php M src/SQLStore/Setup.php M src/SQLStore/SnakStore/SnakInserter.php M src/SQLStore/SnakStore/SnakRemover.php M src/SQLStore/SnakStore/SnakRow.php M src/SQLStore/SnakStore/SnakRowBuilder.php M src/SQLStore/SnakStore/SnakStore.php M src/SQLStore/SnakStore/ValueSnakRow.php M src/SQLStore/SnakStore/ValueSnakStore.php M src/SQLStore/SnakStore/ValuelessSnakRow.php M src/SQLStore/SnakStore/ValuelessSnakStore.php M src/SQLStore/Store.php M src/SQLStore/StoreConfig.php M src/SQLStore/Writer.php 38 files changed, 0 insertions(+), 114 deletions(-) git pull ssh://gerrit.wikimedia.org:29418/mediawiki/extensions/WikibaseQueryEngine refs/changes/79/87579/1 diff --git a/src/PropertyDataValueTypeLookup.php b/src/PropertyDataValueTypeLookup.php index 97cf6a7..742956c 100644 --- a/src/PropertyDataValueTypeLookup.php +++ b/src/PropertyDataValueTypeLookup.php @@ -10,9 +10,6 @@ * * @since 0.1 * - * @file - * @ingroup WikibaseSQLStore - * * @licence GNU GPL v2+ * @author Jeroen De Dauw < [email protected] > */ diff --git a/src/SQLStore/ClaimStore/ClaimInserter.php b/src/SQLStore/ClaimStore/ClaimInserter.php index f817092..bae1080 100644 --- a/src/SQLStore/ClaimStore/ClaimInserter.php +++ b/src/SQLStore/ClaimStore/ClaimInserter.php @@ -13,9 +13,6 @@ * * @since 0.1 * - * @file - * @ingroup WikibaseSQLStore - * * @licence GNU GPL v2+ * @author Jeroen De Dauw < [email protected] > */ diff --git a/src/SQLStore/ClaimStore/ClaimRow.php b/src/SQLStore/ClaimStore/ClaimRow.php index 6266b92..3edc80e 100644 --- a/src/SQLStore/ClaimStore/ClaimRow.php +++ b/src/SQLStore/ClaimStore/ClaimRow.php @@ -7,9 +7,6 @@ * * @since 0.1 * - * @file - * @ingroup WikibaseSQLStore - * * @licence GNU GPL v2+ * @author Jeroen De Dauw < [email protected] > */ diff --git a/src/SQLStore/ClaimStore/ClaimRowBuilder.php b/src/SQLStore/ClaimStore/ClaimRowBuilder.php index 9fc7b3e..960c680 100644 --- a/src/SQLStore/ClaimStore/ClaimRowBuilder.php +++ b/src/SQLStore/ClaimStore/ClaimRowBuilder.php @@ -12,9 +12,6 @@ * * @since 0.1 * - * @file - * @ingroup WikibaseSQLStore - * * @licence GNU GPL v2+ * @author Jeroen De Dauw < [email protected] > */ diff --git a/src/SQLStore/DVHandler/BooleanHandler.php b/src/SQLStore/DVHandler/BooleanHandler.php index bf8c809..faa56dc 100644 --- a/src/SQLStore/DVHandler/BooleanHandler.php +++ b/src/SQLStore/DVHandler/BooleanHandler.php @@ -13,9 +13,6 @@ * * @since 0.1 * - * @file - * @ingroup WikibaseSQLStore - * * @licence GNU GPL v2+ * @author Jeroen De Dauw < [email protected] > */ diff --git a/src/SQLStore/DVHandler/EntityIdHandler.php b/src/SQLStore/DVHandler/EntityIdHandler.php index 7eaa767..686d38f 100644 --- a/src/SQLStore/DVHandler/EntityIdHandler.php +++ b/src/SQLStore/DVHandler/EntityIdHandler.php @@ -14,9 +14,6 @@ * * @since 0.1 * - * @file - * @ingroup WikibaseSQLStore - * * @licence GNU GPL v2+ * @author Jeroen De Dauw < [email protected] > */ diff --git a/src/SQLStore/DVHandler/GeoCoordinateHandler.php b/src/SQLStore/DVHandler/GeoCoordinateHandler.php index 0ed6a6a..23a19de 100644 --- a/src/SQLStore/DVHandler/GeoCoordinateHandler.php +++ b/src/SQLStore/DVHandler/GeoCoordinateHandler.php @@ -13,9 +13,6 @@ * * @since 0.1 * - * @file - * @ingroup WikibaseSQLStore - * * @licence GNU GPL v2+ * @author Jeroen De Dauw < [email protected] > */ diff --git a/src/SQLStore/DVHandler/IriHandler.php b/src/SQLStore/DVHandler/IriHandler.php index 03b47f5..4f60f7b 100644 --- a/src/SQLStore/DVHandler/IriHandler.php +++ b/src/SQLStore/DVHandler/IriHandler.php @@ -13,9 +13,6 @@ * * @since 0.1 * - * @file - * @ingroup WikibaseSQLStore - * * @licence GNU GPL v2+ * @author Jeroen De Dauw < [email protected] > */ diff --git a/src/SQLStore/DVHandler/MonolingualTextHandler.php b/src/SQLStore/DVHandler/MonolingualTextHandler.php index 210462f..174c661 100644 --- a/src/SQLStore/DVHandler/MonolingualTextHandler.php +++ b/src/SQLStore/DVHandler/MonolingualTextHandler.php @@ -13,9 +13,6 @@ * * @since 0.1 * - * @file - * @ingroup WikibaseSQLStore - * * @licence GNU GPL v2+ * @author Jeroen De Dauw < [email protected] > */ diff --git a/src/SQLStore/DVHandler/NumberHandler.php b/src/SQLStore/DVHandler/NumberHandler.php index 1c76f42..fad986a 100644 --- a/src/SQLStore/DVHandler/NumberHandler.php +++ b/src/SQLStore/DVHandler/NumberHandler.php @@ -13,9 +13,6 @@ * * @since 0.1 * - * @file - * @ingroup WikibaseSQLStore - * * @licence GNU GPL v2+ * @author Jeroen De Dauw < [email protected] > */ diff --git a/src/SQLStore/DVHandler/StringHandler.php b/src/SQLStore/DVHandler/StringHandler.php index d622a27..c6554ac 100644 --- a/src/SQLStore/DVHandler/StringHandler.php +++ b/src/SQLStore/DVHandler/StringHandler.php @@ -13,9 +13,6 @@ * * @since 0.1 * - * @file - * @ingroup WikibaseSQLStore - * * @licence GNU GPL v2+ * @author Jeroen De Dauw < [email protected] > */ diff --git a/src/SQLStore/DataValueHandler.php b/src/SQLStore/DataValueHandler.php index d5c6d12..e0dc3d3 100644 --- a/src/SQLStore/DataValueHandler.php +++ b/src/SQLStore/DataValueHandler.php @@ -14,9 +14,6 @@ * * @since 0.1 * - * @file - * @ingroup WikibaseSQLStore - * * @licence GNU GPL v2+ * @author Jeroen De Dauw < [email protected] > */ diff --git a/src/SQLStore/DataValueHandlers.php b/src/SQLStore/DataValueHandlers.php index dc94cc0..d38c693 100644 --- a/src/SQLStore/DataValueHandlers.php +++ b/src/SQLStore/DataValueHandlers.php @@ -20,9 +20,6 @@ * * @since 0.1 * - * @file - * @ingroup WikibaseSQLStore - * * @licence GNU GPL v2+ * @author Jeroen De Dauw < [email protected] > */ diff --git a/src/SQLStore/DataValueTable.php b/src/SQLStore/DataValueTable.php index e23e3b5..c437f2f 100644 --- a/src/SQLStore/DataValueTable.php +++ b/src/SQLStore/DataValueTable.php @@ -12,9 +12,6 @@ * * @since 0.1 * - * @file - * @ingroup WikibaseSQLStore - * * @licence GNU GPL v2+ * @author Jeroen De Dauw < [email protected] > */ diff --git a/src/SQLStore/Engine/DescriptionMatchFinder.php b/src/SQLStore/Engine/DescriptionMatchFinder.php index 73e044a..9467b1c 100644 --- a/src/SQLStore/Engine/DescriptionMatchFinder.php +++ b/src/SQLStore/Engine/DescriptionMatchFinder.php @@ -23,9 +23,6 @@ * * @since 0.1 * - * @file - * @ingroup WikibaseSQLStore - * * @licence GNU GPL v2+ * @author Jeroen De Dauw < [email protected] > */ diff --git a/src/SQLStore/Engine/Engine.php b/src/SQLStore/Engine/Engine.php index a145786..64f5a6c 100644 --- a/src/SQLStore/Engine/Engine.php +++ b/src/SQLStore/Engine/Engine.php @@ -12,9 +12,6 @@ * * @since 0.1 * - * @file - * @ingroup WikibaseSQLStore - * * @licence GNU GPL v2+ * @author Jeroen De Dauw < [email protected] > */ diff --git a/src/SQLStore/EntityIdTransformer.php b/src/SQLStore/EntityIdTransformer.php index e073474..9d3afed 100644 --- a/src/SQLStore/EntityIdTransformer.php +++ b/src/SQLStore/EntityIdTransformer.php @@ -13,9 +13,6 @@ * * @since 0.1 * - * @file - * @ingroup WikibaseSQLStore - * * @licence GNU GPL v2+ * @author Jeroen De Dauw < [email protected] > * @author Denny Vrandecic diff --git a/src/SQLStore/EntityInserter.php b/src/SQLStore/EntityInserter.php index d61374b..59caa9a 100644 --- a/src/SQLStore/EntityInserter.php +++ b/src/SQLStore/EntityInserter.php @@ -11,9 +11,6 @@ * * @since 0.1 * - * @file - * @ingroup WikibaseSQLStore - * * @licence GNU GPL v2+ * @author Jeroen De Dauw < [email protected] > */ diff --git a/src/SQLStore/EntityRemover.php b/src/SQLStore/EntityRemover.php index 784cb56..7dc5e74 100644 --- a/src/SQLStore/EntityRemover.php +++ b/src/SQLStore/EntityRemover.php @@ -11,9 +11,6 @@ * * @since 0.1 * - * @file - * @ingroup WikibaseSQLStore - * * @licence GNU GPL v2+ * @author Jeroen De Dauw < [email protected] > */ diff --git a/src/SQLStore/EntityTable.php b/src/SQLStore/EntityTable.php index cccd0d4..efd6a62 100644 --- a/src/SQLStore/EntityTable.php +++ b/src/SQLStore/EntityTable.php @@ -10,9 +10,6 @@ * * @since 0.1 * - * @file - * @ingroup WikibaseSQLStore - * * @licence GNU GPL v2+ * @author Jeroen De Dauw < [email protected] > */ diff --git a/src/SQLStore/EntityUpdater.php b/src/SQLStore/EntityUpdater.php index ee0771c..f0880d8 100644 --- a/src/SQLStore/EntityUpdater.php +++ b/src/SQLStore/EntityUpdater.php @@ -9,9 +9,6 @@ * * @since 0.1 * - * @file - * @ingroup WikibaseSQLStore - * * @licence GNU GPL v2+ * @author Jeroen De Dauw < [email protected] > */ diff --git a/src/SQLStore/Factory.php b/src/SQLStore/Factory.php index 8b24917..4a22666 100644 --- a/src/SQLStore/Factory.php +++ b/src/SQLStore/Factory.php @@ -23,9 +23,6 @@ * * @since 0.1 * - * @file - * @ingroup WikibaseSQLStore - * * @licence GNU GPL v2+ * @author Jeroen De Dauw < [email protected] > */ diff --git a/src/SQLStore/InternalEntityIdFinder.php b/src/SQLStore/InternalEntityIdFinder.php index 9a77d5d..303cb0e 100644 --- a/src/SQLStore/InternalEntityIdFinder.php +++ b/src/SQLStore/InternalEntityIdFinder.php @@ -9,9 +9,6 @@ * * @since 0.1 * - * @file - * @ingroup WikibaseSQLStore - * * @licence GNU GPL v2+ * @author Jeroen De Dauw < [email protected] > */ diff --git a/src/SQLStore/InternalEntityIdInterpreter.php b/src/SQLStore/InternalEntityIdInterpreter.php index b9d3076..6ce7fef 100644 --- a/src/SQLStore/InternalEntityIdInterpreter.php +++ b/src/SQLStore/InternalEntityIdInterpreter.php @@ -9,9 +9,6 @@ * * @since 0.1 * - * @file - * @ingroup WikibaseSQLStore - * * @licence GNU GPL v2+ * @author Jeroen De Dauw < [email protected] > */ diff --git a/src/SQLStore/Schema.php b/src/SQLStore/Schema.php index a583734..9276cb0 100644 --- a/src/SQLStore/Schema.php +++ b/src/SQLStore/Schema.php @@ -13,9 +13,6 @@ * * @since 0.1 * - * @file - * @ingroup WikibaseSQLStore - * * @licence GNU GPL v2+ * @author Jeroen De Dauw < [email protected] > */ diff --git a/src/SQLStore/Setup.php b/src/SQLStore/Setup.php index d9b985d..1bec48b 100644 --- a/src/SQLStore/Setup.php +++ b/src/SQLStore/Setup.php @@ -14,9 +14,6 @@ * * @since 0.1 * - * @file - * @ingroup WikibaseSQLStore - * * @licence GNU GPL v2+ * @author Jeroen De Dauw < [email protected] > */ diff --git a/src/SQLStore/SnakStore/SnakInserter.php b/src/SQLStore/SnakStore/SnakInserter.php index 79409c8..de12739 100644 --- a/src/SQLStore/SnakStore/SnakInserter.php +++ b/src/SQLStore/SnakStore/SnakInserter.php @@ -10,9 +10,6 @@ * * @since 0.1 * - * @file - * @ingroup WikibaseSQLStore - * * @licence GNU GPL v2+ * @author Jeroen De Dauw < [email protected] > */ diff --git a/src/SQLStore/SnakStore/SnakRemover.php b/src/SQLStore/SnakStore/SnakRemover.php index 79a2968..992c198 100644 --- a/src/SQLStore/SnakStore/SnakRemover.php +++ b/src/SQLStore/SnakStore/SnakRemover.php @@ -11,9 +11,6 @@ * * @since 0.1 * - * @file - * @ingroup WikibaseSQLStore - * * @licence GNU GPL v2+ * @author Jeroen De Dauw < [email protected] > */ diff --git a/src/SQLStore/SnakStore/SnakRow.php b/src/SQLStore/SnakStore/SnakRow.php index 62a045e..73d07ab 100644 --- a/src/SQLStore/SnakStore/SnakRow.php +++ b/src/SQLStore/SnakStore/SnakRow.php @@ -7,9 +7,6 @@ * * @since 0.1 * - * @file - * @ingroup WikibaseSQLStore - * * @licence GNU GPL v2+ * @author Jeroen De Dauw < [email protected] > */ diff --git a/src/SQLStore/SnakStore/SnakRowBuilder.php b/src/SQLStore/SnakStore/SnakRowBuilder.php index 212e6d8..73dba75 100644 --- a/src/SQLStore/SnakStore/SnakRowBuilder.php +++ b/src/SQLStore/SnakStore/SnakRowBuilder.php @@ -15,9 +15,6 @@ * * @since 0.1 * - * @file - * @ingroup WikibaseSQLStore - * * @licence GNU GPL v2+ * @author Jeroen De Dauw < [email protected] > */ diff --git a/src/SQLStore/SnakStore/SnakStore.php b/src/SQLStore/SnakStore/SnakStore.php index 2dffc8a..951b894 100644 --- a/src/SQLStore/SnakStore/SnakStore.php +++ b/src/SQLStore/SnakStore/SnakStore.php @@ -5,9 +5,6 @@ /** * @since 0.1 * - * @file - * @ingroup WikibaseSQLStore - * * @licence GNU GPL v2+ * @author Jeroen De Dauw < [email protected] > */ diff --git a/src/SQLStore/SnakStore/ValueSnakRow.php b/src/SQLStore/SnakStore/ValueSnakRow.php index 287d305..966b2bc 100644 --- a/src/SQLStore/SnakStore/ValueSnakRow.php +++ b/src/SQLStore/SnakStore/ValueSnakRow.php @@ -7,9 +7,6 @@ /** * @since 0.1 * - * @file - * @ingroup WikibaseSQLStore - * * @licence GNU GPL v2+ * @author Jeroen De Dauw < [email protected] > */ diff --git a/src/SQLStore/SnakStore/ValueSnakStore.php b/src/SQLStore/SnakStore/ValueSnakStore.php index 08f4074..0b16582 100644 --- a/src/SQLStore/SnakStore/ValueSnakStore.php +++ b/src/SQLStore/SnakStore/ValueSnakStore.php @@ -10,9 +10,6 @@ /** * @since 0.1 * - * @file - * @ingroup WikibaseSQLStore - * * @licence GNU GPL v2+ * @author Jeroen De Dauw < [email protected] > */ diff --git a/src/SQLStore/SnakStore/ValuelessSnakRow.php b/src/SQLStore/SnakStore/ValuelessSnakRow.php index 293119a..1fabee3 100644 --- a/src/SQLStore/SnakStore/ValuelessSnakRow.php +++ b/src/SQLStore/SnakStore/ValuelessSnakRow.php @@ -7,9 +7,6 @@ /** * @since 0.1 * - * @file - * @ingroup WikibaseSQLStore - * * @licence GNU GPL v2+ * @author Jeroen De Dauw < [email protected] > */ diff --git a/src/SQLStore/SnakStore/ValuelessSnakStore.php b/src/SQLStore/SnakStore/ValuelessSnakStore.php index a2aa763..dda6943 100644 --- a/src/SQLStore/SnakStore/ValuelessSnakStore.php +++ b/src/SQLStore/SnakStore/ValuelessSnakStore.php @@ -9,9 +9,6 @@ /** * @since 0.1 * - * @file - * @ingroup WikibaseSQLStore - * * @licence GNU GPL v2+ * @author Jeroen De Dauw < [email protected] > */ diff --git a/src/SQLStore/Store.php b/src/SQLStore/Store.php index 51bfeb7..5d31564 100644 --- a/src/SQLStore/Store.php +++ b/src/SQLStore/Store.php @@ -15,9 +15,6 @@ * * @since 0.1 * - * @file - * @ingroup WikibaseSQLStore - * * @licence GNU GPL v2+ * @author Jeroen De Dauw < [email protected] > */ diff --git a/src/SQLStore/StoreConfig.php b/src/SQLStore/StoreConfig.php index c8bfd79..a569d66 100644 --- a/src/SQLStore/StoreConfig.php +++ b/src/SQLStore/StoreConfig.php @@ -14,9 +14,6 @@ * * @since 0.1 * - * @file - * @ingroup WikibaseSQLStore - * * @licence GNU GPL v2+ * @author Jeroen De Dauw < [email protected] > */ diff --git a/src/SQLStore/Writer.php b/src/SQLStore/Writer.php index 183cdf7..e1a77ef 100644 --- a/src/SQLStore/Writer.php +++ b/src/SQLStore/Writer.php @@ -12,9 +12,6 @@ * * @since 0.1 * - * @file - * @ingroup WikibaseSQLStore - * * @licence GNU GPL v2+ * @author Jeroen De Dauw < [email protected] > */ -- To view, visit https://gerrit.wikimedia.org/r/87579 To unsubscribe, visit https://gerrit.wikimedia.org/r/settings Gerrit-MessageType: newchange Gerrit-Change-Id: I35a4b3cf3f5a9f379c7c2e4b4cb24306359aedda Gerrit-PatchSet: 1 Gerrit-Project: mediawiki/extensions/WikibaseQueryEngine Gerrit-Branch: master Gerrit-Owner: Jeroen De Dauw <[email protected]> _______________________________________________ MediaWiki-commits mailing list [email protected] https://lists.wikimedia.org/mailman/listinfo/mediawiki-commits
