Completed
Push — master ( a853f9...f08ed7 )
by
unknown
04:51
created
includes/DumpMetaInformation/DumpMetaInformationLookup.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -20,7 +20,7 @@  discard block
 block discarded – undo
20 20
 	 * @return DumpMetaInformation[]
21 21
 	 * @throws \InvalidArgumentException
22 22
 	 */
23
-	public function getWithIds( array $dumpIds );
23
+	public function getWithIds(array $dumpIds);
24 24
 
25 25
 	/**
26 26
 	 * Gets DumpMetaInformation for specific identifier properties from database
@@ -30,7 +30,7 @@  discard block
 block discarded – undo
30 30
 	 *
31 31
 	 * @return DumpMetaInformation[]
32 32
 	 */
33
-	public function getWithIdentifierProperties( array $identifierPropertyIds );
33
+	public function getWithIdentifierProperties(array $identifierPropertyIds);
34 34
 
35 35
 	/**
36 36
 	 * Gets all DumpMetaInformation from database
Please login to merge, or discard this patch.
includes/UpdateExternalData/ExternalDataImporter.php 2 patches
Spacing   +41 added lines, -41 removed lines patch added patch discarded remove patch
@@ -51,13 +51,13 @@  discard block
 block discarded – undo
51 51
 	public function import() {
52 52
 		$dumpIds = $this->insertMetaInformation();
53 53
 
54
-		$this->log( "\nDelete old database entries...\n" );
54
+		$this->log("\nDelete old database entries...\n");
55 55
 
56
-		foreach ( $dumpIds as $dumpId ) {
57
-			$this->externalDataRepo->deleteOfDump( $dumpId, $this->importSettings->getBatchSize() );
56
+		foreach ($dumpIds as $dumpId) {
57
+			$this->externalDataRepo->deleteOfDump($dumpId, $this->importSettings->getBatchSize());
58 58
 		}
59 59
 
60
-		$this->log( "\n" );
60
+		$this->log("\n");
61 61
 
62 62
 		$this->insertExternalValues();
63 63
 	}
@@ -68,54 +68,54 @@  discard block
 block discarded – undo
68 68
 	 * @return array
69 69
 	 */
70 70
 	protected function insertMetaInformation() {
71
-		$this->log( "Insert new dump meta information\n" );
71
+		$this->log("Insert new dump meta information\n");
72 72
 
73
-		$csvFile = fopen( $this->importSettings->getDumpInformationFilePath(), 'rb' );
74
-		if( !$csvFile ) {
75
-			exit( 'Error while reading CSV file.' );
73
+		$csvFile = fopen($this->importSettings->getDumpInformationFilePath(), 'rb');
74
+		if (!$csvFile) {
75
+			exit('Error while reading CSV file.');
76 76
 		}
77 77
 
78 78
 		$i = 0;
79 79
 		$dumpIds = array();
80
-		while ( $data = fgetcsv( $csvFile ) ) {
80
+		while ($data = fgetcsv($csvFile)) {
81 81
 			$identifierPropertyIds = array_map(
82
-				function ( $propertyId ) {
83
-					return new PropertyId( $propertyId );
82
+				function($propertyId) {
83
+					return new PropertyId($propertyId);
84 84
 				},
85
-				json_decode( $data[2] )
85
+				json_decode($data[2])
86 86
 			);
87 87
 			try {
88 88
 				$dumpMetaInformation = new DumpMetaInformation(
89 89
 					$data[0],
90
-					new ItemId( $data[1] ),
90
+					new ItemId($data[1]),
91 91
 					$identifierPropertyIds,
92 92
 					$data[3],
93 93
 					$data[4],
94 94
 					$data[5],
95
-					intval( $data[6] ),
96
-					new ItemId( $data[7] )
95
+					intval($data[6]),
96
+					new ItemId($data[7])
97 97
 				);
98 98
 			}
99
-			catch( \InvalidArgumentException $e ) {
100
-				exit( 'Input file has bad formatted values.' );
99
+			catch (\InvalidArgumentException $e) {
100
+				exit('Input file has bad formatted values.');
101 101
 			}
102 102
 			$dumpIds[] = $dumpMetaInformation->getDumpId();
103 103
 
104 104
 			try {
105
-				$this->dumpMetaInformationStore->save( $dumpMetaInformation );
105
+				$this->dumpMetaInformationStore->save($dumpMetaInformation);
106 106
 			}
107
-			catch( \DBError $e ) {
108
-				exit( 'Unknown database error occurred.' );
107
+			catch (\DBError $e) {
108
+				exit('Unknown database error occurred.');
109 109
 			}
110 110
 
111 111
 			$i++;
112
-			$this->log( "\r\033[K" );
113
-			$this->log( "$i rows inserted or updated" );
112
+			$this->log("\r\033[K");
113
+			$this->log("$i rows inserted or updated");
114 114
 		}
115 115
 
116
-		fclose( $csvFile );
116
+		fclose($csvFile);
117 117
 
118
-		$this->log( "\n" );
118
+		$this->log("\n");
119 119
 
120 120
 		return $dumpIds;
121 121
 	}
@@ -124,32 +124,32 @@  discard block
 block discarded – undo
124 124
 	 * Inserts external values stored in csv file into database
125 125
 	 */
126 126
 	private function insertExternalValues() {
127
-		$this->log( "Insert new data values\n" );
127
+		$this->log("Insert new data values\n");
128 128
 
129
-		$csvFile = fopen( $this->importSettings->getExternalValuesFilePath(), 'rb' );
130
-		if( !$csvFile ) {
131
-			exit( 'Error while reading CSV file.' );
129
+		$csvFile = fopen($this->importSettings->getExternalValuesFilePath(), 'rb');
130
+		if (!$csvFile) {
131
+			exit('Error while reading CSV file.');
132 132
 		}
133 133
 
134 134
 		$i = 0;
135 135
 		$accumulator = array();
136
-		while ( true ) {
137
-			$data = fgetcsv( $csvFile );
138
-			if ( $data === false || ++$i % $this->importSettings->getBatchSize() === 0 ) {
136
+		while (true) {
137
+			$data = fgetcsv($csvFile);
138
+			if ($data === false || ++$i % $this->importSettings->getBatchSize() === 0) {
139 139
 				try {
140
-					$this->externalDataRepo->insertBatch( $accumulator );
140
+					$this->externalDataRepo->insertBatch($accumulator);
141 141
 				}
142
-				catch( \DBError $e ) {
143
-					exit( 'Unknown database error occurred.' );
142
+				catch (\DBError $e) {
143
+					exit('Unknown database error occurred.');
144 144
 				}
145 145
 				wfGetLBFactory()->waitForReplication();
146 146
 
147
-				$this->log( "\r\033[K" );
148
-				$this->log( "$i rows inserted" );
147
+				$this->log("\r\033[K");
148
+				$this->log("$i rows inserted");
149 149
 
150 150
 				$accumulator = array();
151 151
 
152
-				if ( $data === false ) {
152
+				if ($data === false) {
153 153
 					break;
154 154
 				}
155 155
 			}
@@ -157,16 +157,16 @@  discard block
 block discarded – undo
157 157
 			$accumulator[] = $data;
158 158
 		}
159 159
 
160
-		fclose( $csvFile );
160
+		fclose($csvFile);
161 161
 
162
-		$this->log( "\n" );
162
+		$this->log("\n");
163 163
 	}
164 164
 
165 165
 	/**
166 166
 	 * @param string $text
167 167
 	 */
168
-	private function log( $text ) {
169
-		if ( !$this->importSettings->isQuiet() ) {
168
+	private function log($text) {
169
+		if (!$this->importSettings->isQuiet()) {
170 170
 			print $text;
171 171
 		}
172 172
 	}
Please login to merge, or discard this patch.
Braces   +3 added lines, -6 removed lines patch added patch discarded remove patch
@@ -95,16 +95,14 @@  discard block
 block discarded – undo
95 95
 					intval( $data[6] ),
96 96
 					new ItemId( $data[7] )
97 97
 				);
98
-			}
99
-			catch( \InvalidArgumentException $e ) {
98
+			} catch( \InvalidArgumentException $e ) {
100 99
 				exit( 'Input file has bad formatted values.' );
101 100
 			}
102 101
 			$dumpIds[] = $dumpMetaInformation->getDumpId();
103 102
 
104 103
 			try {
105 104
 				$this->dumpMetaInformationStore->save( $dumpMetaInformation );
106
-			}
107
-			catch( \DBError $e ) {
105
+			} catch( \DBError $e ) {
108 106
 				exit( 'Unknown database error occurred.' );
109 107
 			}
110 108
 
@@ -138,8 +136,7 @@  discard block
 block discarded – undo
138 136
 			if ( $data === false || ++$i % $this->importSettings->getBatchSize() === 0 ) {
139 137
 				try {
140 138
 					$this->externalDataRepo->insertBatch( $accumulator );
141
-				}
142
-				catch( \DBError $e ) {
139
+				} catch( \DBError $e ) {
143 140
 					exit( 'Unknown database error occurred.' );
144 141
 				}
145 142
 				wfGetLBFactory()->waitForReplication();
Please login to merge, or discard this patch.
includes/CrossCheck/ReferenceChecker.php 1 patch
Spacing   +9 added lines, -9 removed lines patch added patch discarded remove patch
@@ -34,17 +34,17 @@  discard block
 block discarded – undo
34 34
 	 * @throws InvalidArgumentException
35 35
 	 * @return ReferenceResult
36 36
 	 */
37
-	public function checkForReferences( Statement $statement, PropertyId $identifierPropertyId, $externalId, DumpMetaInformation $dumpMetaInformation ) {
38
-		Assert::parameterType( 'string', $externalId, '$externalId' );
37
+	public function checkForReferences(Statement $statement, PropertyId $identifierPropertyId, $externalId, DumpMetaInformation $dumpMetaInformation) {
38
+		Assert::parameterType('string', $externalId, '$externalId');
39 39
 
40
-		if ( count( $statement->getReferences() ) === 0 ) {
40
+		if (count($statement->getReferences()) === 0) {
41 41
 			$status = ReferenceResult::STATUS_REFERENCES_MISSING;
42 42
 		} else {
43 43
 			$status = ReferenceResult::STATUS_REFERENCES_STATED;
44 44
 		}
45 45
 
46
-		$externalReference = $this->buildReference( $identifierPropertyId, $externalId, $dumpMetaInformation );
47
-		return new ReferenceResult( $status, $externalReference );
46
+		$externalReference = $this->buildReference($identifierPropertyId, $externalId, $dumpMetaInformation);
47
+		return new ReferenceResult($status, $externalReference);
48 48
 	}
49 49
 
50 50
 	/**
@@ -55,17 +55,17 @@  discard block
 block discarded – undo
55 55
 	 * @param DumpMetaInformation $dumpMetaInformation
56 56
 	 * @return Reference
57 57
 	 */
58
-	private function buildReference( PropertyId $identifierPropertyId, $externalId, DumpMetaInformation $dumpMetaInformation ) {
58
+	private function buildReference(PropertyId $identifierPropertyId, $externalId, DumpMetaInformation $dumpMetaInformation) {
59 59
 		global $wgWBQEVStatedInPID;
60 60
 
61 61
 		$sourceItemId = $dumpMetaInformation->getSourceItemId();
62 62
 		$statedInAuthoritySnak = new PropertyValueSnak(
63
-			new PropertyId( $wgWBQEVStatedInPID ),
64
-			new EntityIdValue( $sourceItemId )
63
+			new PropertyId($wgWBQEVStatedInPID),
64
+			new EntityIdValue($sourceItemId)
65 65
 		);
66 66
 		$authorityWithExternalIdSnak = new PropertyValueSnak(
67 67
 			$identifierPropertyId,
68
-			new StringValue( $externalId )
68
+			new StringValue($externalId)
69 69
 		);
70 70
 
71 71
 		return new Reference(
Please login to merge, or discard this patch.
WikibaseQualityExternalValidation.php 1 patch
Spacing   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -1,10 +1,10 @@  discard block
 block discarded – undo
1 1
 <?php
2 2
 
3
-if ( is_readable( __DIR__ . '/vendor/autoload.php' ) ) {
4
-	require_once __DIR__ . '/vendor/autoload.php';
3
+if (is_readable(__DIR__.'/vendor/autoload.php')) {
4
+	require_once __DIR__.'/vendor/autoload.php';
5 5
 }
6 6
 
7
-call_user_func( function () {
7
+call_user_func(function() {
8 8
 	// Set credits
9 9
 	$GLOBALS['wgExtensionCredits']['wikibase'][] = array(
10 10
 		'path' => __FILE__,
@@ -17,8 +17,8 @@  discard block
 block discarded – undo
17 17
 	);
18 18
 
19 19
 	// Initialize localization and aliases
20
-	$GLOBALS['wgMessagesDirs']['WikibaseQualityExternalValidation'] = __DIR__ . '/i18n';
21
-	$GLOBALS['wgExtensionMessagesFiles']['WikibaseQualityExternalValidationAlias'] = __DIR__ . '/WikibaseQualityExternalValidation.alias.php';
20
+	$GLOBALS['wgMessagesDirs']['WikibaseQualityExternalValidation'] = __DIR__.'/i18n';
21
+	$GLOBALS['wgExtensionMessagesFiles']['WikibaseQualityExternalValidationAlias'] = __DIR__.'/WikibaseQualityExternalValidation.alias.php';
22 22
 
23 23
 	// Initalize hooks for creating database tables
24 24
 	$GLOBALS['wgHooks']['LoadExtensionSchemaUpdates'][] = 'WikibaseQualityExternalValidationHooks::onCreateSchema';
@@ -33,8 +33,8 @@  discard block
 block discarded – undo
33 33
 	// Define API modules
34 34
 	$GLOBALS['wgAPIModules']['wbqevcrosscheck'] = array(
35 35
 		'class' => 'WikibaseQuality\ExternalValidation\Api\RunCrossCheck',
36
-		'factory' => function( ApiMain $main, $action ) {
37
-			return \WikibaseQuality\ExternalValidation\Api\RunCrossCheck::newFromGlobalState( $main, $action );
36
+		'factory' => function(ApiMain $main, $action) {
37
+			return \WikibaseQuality\ExternalValidation\Api\RunCrossCheck::newFromGlobalState($main, $action);
38 38
 		}
39 39
 	);
40 40
 
Please login to merge, or discard this patch.