Completed
Push — master ( 3eff13...afdb92 )
by
unknown
03:28 queued 13s
created
src/Job/CheckConstraintsJob.php 1 patch
Spacing   +13 added lines, -13 removed lines patch added patch discarded remove patch
@@ -42,25 +42,25 @@  discard block
 block discarded – undo
42 42
 	 * @param Title $title
43 43
 	 * @param string[] $params should contain 'entityId' => 'Q1234'
44 44
 	 */
45
-	public function __construct( Title $title, array $params ) {
46
-		parent::__construct( self::COMMAND, $title, $params );
45
+	public function __construct(Title $title, array $params) {
46
+		parent::__construct(self::COMMAND, $title, $params);
47 47
 		$this->removeDuplicates = true;
48 48
 
49
-		Assert::parameterType( 'string', $params['entityId'], '$params[\'entityId\']' );
49
+		Assert::parameterType('string', $params['entityId'], '$params[\'entityId\']');
50 50
 		$this->entityId = $params['entityId'];
51 51
 
52
-		$resultSource = ConstraintsServices::getResultsSource( MediaWikiServices::getInstance() );
52
+		$resultSource = ConstraintsServices::getResultsSource(MediaWikiServices::getInstance());
53 53
 		// This job should only ever be used when caching result sources are used.
54
-		$this->setResultsSource( $resultSource );
54
+		$this->setResultsSource($resultSource);
55 55
 
56
-		$this->setEntityIdParser( WikibaseRepo::getDefaultInstance()->getEntityIdParser() );
56
+		$this->setEntityIdParser(WikibaseRepo::getDefaultInstance()->getEntityIdParser());
57 57
 	}
58 58
 
59
-	public function setResultsSource( CachingResultsSource $resultsSource ) {
59
+	public function setResultsSource(CachingResultsSource $resultsSource) {
60 60
 		$this->resultsSource = $resultsSource;
61 61
 	}
62 62
 
63
-	public function setEntityIdParser( EntityIdParser $parser ) {
63
+	public function setEntityIdParser(EntityIdParser $parser) {
64 64
 		$this->entityIdParser = $parser;
65 65
 	}
66 66
 
@@ -71,19 +71,19 @@  discard block
 block discarded – undo
71 71
 	 */
72 72
 	public function run() {
73 73
 		try {
74
-			$entityId = $this->entityIdParser->parse( $this->entityId );
75
-		} catch ( EntityIdParsingException $e ) {
74
+			$entityId = $this->entityIdParser->parse($this->entityId);
75
+		} catch (EntityIdParsingException $e) {
76 76
 			return false;
77 77
 		}
78 78
 
79
-		$this->checkConstraints( $entityId );
79
+		$this->checkConstraints($entityId);
80 80
 
81 81
 		return true;
82 82
 	}
83 83
 
84
-	private function checkConstraints( EntityId $entityId ) {
84
+	private function checkConstraints(EntityId $entityId) {
85 85
 		$this->resultsSource->getResults(
86
-			[ $entityId ],
86
+			[$entityId],
87 87
 			[],
88 88
 			null,
89 89
 			[]
Please login to merge, or discard this patch.