Completed
Push — master ( 64888b...d6bc19 )
by
unknown
02:17
created
src/ConstraintCheck/Context/QualifierContext.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -23,7 +23,7 @@  discard block
 block discarded – undo
23 23
 		Statement $statement,
24 24
 		Snak $snak
25 25
 	) {
26
-		parent::__construct( $entity, $snak );
26
+		parent::__construct($entity, $snak);
27 27
 		$this->statement = $statement;
28 28
 	}
29 29
 
@@ -33,7 +33,7 @@  discard block
 block discarded – undo
33 33
 
34 34
 	public function getSnakGroup() {
35 35
 		$snaks = $this->statement->getQualifiers();
36
-		return array_values( $snaks->getArrayCopy() );
36
+		return array_values($snaks->getArrayCopy());
37 37
 	}
38 38
 
39 39
 	public function getCursor() {
Please login to merge, or discard this patch.
src/ConstraintCheck/Context/MainSnakContext.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -20,9 +20,9 @@  discard block
 block discarded – undo
20 20
 	 */
21 21
 	private $statement;
22 22
 
23
-	public function __construct( EntityDocument $entity, Statement $statement ) {
24
-		Assert::parameterType( StatementListProvider::class, $entity, '$entity' );
25
-		parent::__construct( $entity, $statement->getMainSnak() );
23
+	public function __construct(EntityDocument $entity, Statement $statement) {
24
+		Assert::parameterType(StatementListProvider::class, $entity, '$entity');
25
+		parent::__construct($entity, $statement->getMainSnak());
26 26
 
27 27
 		$this->statement = $statement;
28 28
 	}
@@ -43,7 +43,7 @@  discard block
 block discarded – undo
43 43
 		/** @var StatementList $statements */
44 44
 		$statements = $this->entity->getStatements();
45 45
 		return $statements
46
-			->getByRank( [ Statement::RANK_NORMAL, Statement::RANK_PREFERRED ] )
46
+			->getByRank([Statement::RANK_NORMAL, Statement::RANK_PREFERRED])
47 47
 			->getMainSnaks();
48 48
 	}
49 49
 
Please login to merge, or discard this patch.
src/ConstraintCheck/Context/ReferenceContext.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -30,7 +30,7 @@  discard block
 block discarded – undo
30 30
 		Reference $reference,
31 31
 		Snak $snak
32 32
 	) {
33
-		parent::__construct( $entity, $snak );
33
+		parent::__construct($entity, $snak);
34 34
 		$this->statement = $statement;
35 35
 		$this->reference = $reference;
36 36
 	}
@@ -41,7 +41,7 @@  discard block
 block discarded – undo
41 41
 
42 42
 	public function getSnakGroup() {
43 43
 		$snaks = $this->reference->getSnaks();
44
-		return array_values( $snaks->getArrayCopy() );
44
+		return array_values($snaks->getArrayCopy());
45 45
 	}
46 46
 
47 47
 	public function getCursor() {
Please login to merge, or discard this patch.
src/WikibaseQualityConstraintsHooks.php 1 patch
Spacing   +31 added lines, -31 removed lines patch added patch discarded remove patch
@@ -28,36 +28,36 @@  discard block
 block discarded – undo
28 28
 	/**
29 29
 	 * @param DatabaseUpdater $updater
30 30
 	 */
31
-	public static function onCreateSchema( DatabaseUpdater $updater ) {
32
-		$updater->addExtensionTable( 'wbqc_constraints', __DIR__ . '/../sql/create_wbqc_constraints.sql' );
33
-		$updater->addExtensionField( 'wbqc_constraints', 'constraint_id', __DIR__ . '/../sql/patch-wbqc_constraints-constraint_id.sql' );
31
+	public static function onCreateSchema(DatabaseUpdater $updater) {
32
+		$updater->addExtensionTable('wbqc_constraints', __DIR__.'/../sql/create_wbqc_constraints.sql');
33
+		$updater->addExtensionField('wbqc_constraints', 'constraint_id', __DIR__.'/../sql/patch-wbqc_constraints-constraint_id.sql');
34 34
 	}
35 35
 
36
-	public static function onWikibaseChange( Change $change ) {
36
+	public static function onWikibaseChange(Change $change) {
37 37
 		$config = MediaWikiServices::getInstance()->getMainConfig();
38
-		if ( $config->get( 'WBQualityConstraintsEnableConstraintsImportFromStatements' ) &&
39
-			self::isConstraintStatementsChange( $config, $change )
38
+		if ($config->get('WBQualityConstraintsEnableConstraintsImportFromStatements') &&
39
+			self::isConstraintStatementsChange($config, $change)
40 40
 		) {
41 41
 			/** @var EntityChange $change */
42 42
 			$title = Title::newMainPage();
43
-			$params = [ 'propertyId' => $change->getEntityId()->getSerialization() ];
43
+			$params = ['propertyId' => $change->getEntityId()->getSerialization()];
44 44
 			JobQueueGroup::singleton()->push(
45
-				new JobSpecification( 'constraintsTableUpdate', $params, [], $title )
45
+				new JobSpecification('constraintsTableUpdate', $params, [], $title)
46 46
 			);
47 47
 		}
48 48
 	}
49 49
 
50
-	public static function isConstraintStatementsChange( Config $config, Change $change ) {
51
-		if ( !( $change instanceof EntityChange ) ||
50
+	public static function isConstraintStatementsChange(Config $config, Change $change) {
51
+		if (!($change instanceof EntityChange) ||
52 52
 			 $change->getAction() !== EntityChange::UPDATE ||
53
-			 !( $change->getEntityId() instanceof PropertyId )
53
+			 !($change->getEntityId() instanceof PropertyId)
54 54
 		) {
55 55
 			return false;
56 56
 		}
57 57
 
58 58
 		$info = $change->getInfo();
59 59
 
60
-		if ( !array_key_exists( 'compactDiff', $info ) ) {
60
+		if (!array_key_exists('compactDiff', $info)) {
61 61
 			// the non-compact diff ($info['diff']) does not contain statement diffs (T110996),
62 62
 			// so we only know that the change *might* affect the constraint statements
63 63
 			return true;
@@ -66,18 +66,18 @@  discard block
 block discarded – undo
66 66
 		/** @var EntityDiffChangedAspects $aspects */
67 67
 		$aspects = $info['compactDiff'];
68 68
 
69
-		$propertyConstraintId = $config->get( 'WBQualityConstraintsPropertyConstraintId' );
70
-		return in_array( $propertyConstraintId, $aspects->getStatementChanges() );
69
+		$propertyConstraintId = $config->get('WBQualityConstraintsPropertyConstraintId');
70
+		return in_array($propertyConstraintId, $aspects->getStatementChanges());
71 71
 	}
72 72
 
73
-	public static function onArticlePurge( WikiPage $wikiPage ) {
73
+	public static function onArticlePurge(WikiPage $wikiPage) {
74 74
 		$repo = WikibaseRepo::getDefaultInstance();
75 75
 
76 76
 		$entityContentFactory = $repo->getEntityContentFactory();
77
-		if ( $entityContentFactory->isEntityContentModel( $wikiPage->getContentModel() ) ) {
78
-			$entityId = $entityContentFactory->getEntityIdForTitle( $wikiPage->getTitle() );
77
+		if ($entityContentFactory->isEntityContentModel($wikiPage->getContentModel())) {
78
+			$entityId = $entityContentFactory->getEntityIdForTitle($wikiPage->getTitle());
79 79
 			$resultsCache = ResultsCache::getDefaultInstance();
80
-			$resultsCache->delete( $entityId );
80
+			$resultsCache->delete($entityId);
81 81
 		}
82 82
 	}
83 83
 
@@ -86,18 +86,18 @@  discard block
 block discarded – undo
86 86
 	 * @param int $timestamp UTC timestamp (seconds since the Epoch)
87 87
 	 * @return bool
88 88
 	 */
89
-	public static function isGadgetEnabledForUserName( $userName, $timestamp ) {
89
+	public static function isGadgetEnabledForUserName($userName, $timestamp) {
90 90
 		$initial = $userName[0];
91 91
 
92
-		if ( $initial === 'Z' ) {
92
+		if ($initial === 'Z') {
93 93
 			$firstWeek = 0;
94
-		} elseif ( $initial >= 'W' && $initial < 'Z' ) {
94
+		} elseif ($initial >= 'W' && $initial < 'Z') {
95 95
 			$firstWeek = 1;
96
-		} elseif ( $initial >= 'T' && $initial < 'W' ) {
96
+		} elseif ($initial >= 'T' && $initial < 'W') {
97 97
 			$firstWeek = 2;
98
-		} elseif ( $initial >= 'N' && $initial < 'T' ) {
98
+		} elseif ($initial >= 'N' && $initial < 'T') {
99 99
 			$firstWeek = 3;
100
-		} elseif ( $initial >= 'E' && $initial < 'N' ) {
100
+		} elseif ($initial >= 'E' && $initial < 'N') {
101 101
 			$firstWeek = 4;
102 102
 		} else {
103 103
 			$firstWeek = 5;
@@ -115,27 +115,27 @@  discard block
 block discarded – undo
115 115
 		return $timestamp >= $threshold;
116 116
 	}
117 117
 
118
-	public static function onBeforePageDisplay( OutputPage $out, Skin $skin ) {
118
+	public static function onBeforePageDisplay(OutputPage $out, Skin $skin) {
119 119
 		$repo = WikibaseRepo::getDefaultInstance();
120 120
 
121 121
 		$lookup = $repo->getEntityNamespaceLookup();
122 122
 		$title = $out->getTitle();
123
-		if ( $title === null ) {
123
+		if ($title === null) {
124 124
 			return;
125 125
 		}
126 126
 
127
-		if ( !$lookup->isEntityNamespace( $title->getNamespace() ) ) {
127
+		if (!$lookup->isEntityNamespace($title->getNamespace())) {
128 128
 			return;
129 129
 		}
130
-		if ( !$out->getUser()->isLoggedIn() ) {
130
+		if (!$out->getUser()->isLoggedIn()) {
131 131
 			return;
132 132
 		}
133
-		if ( empty( $out->getJsConfigVars()['wbIsEditView'] ) ) {
133
+		if (empty($out->getJsConfigVars()['wbIsEditView'])) {
134 134
 			return;
135 135
 		}
136 136
 
137
-		if ( self::isGadgetEnabledForUserName( $out->getUser()->getName(), time() ) ) {
138
-			$out->addModules( 'wikibase.quality.constraints.gadget' );
137
+		if (self::isGadgetEnabledForUserName($out->getUser()->getName(), time())) {
138
+			$out->addModules('wikibase.quality.constraints.gadget');
139 139
 		}
140 140
 	}
141 141
 
Please login to merge, or discard this patch.