Passed
Push — master ( 9d11fc...aac809 )
by
unknown
08:50
created
Category
src/Term/TermBuffer.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -26,7 +26,7 @@  discard block
 block discarded – undo
26 26
 	 * i.e. any of TermTypes::TYPE_LABEL, TermTypes::TYPE_DESCRIPTION, TermTypes::TYPE_ALIAS
27 27
 	 * @param string[] $languageCodes The desired languages.
28 28
 	 */
29
-	public function prefetchTerms( array $entityIds, array $termTypes, array $languageCodes );
29
+	public function prefetchTerms(array $entityIds, array $termTypes, array $languageCodes);
30 30
 
31 31
 	/**
32 32
 	 * Returns a term that was previously loaded by prefetchTerms.
@@ -38,6 +38,6 @@  discard block
 block discarded – undo
38 38
 	 * @return string|false|null The term, or false of that term is known to not exist,
39 39
 	 *         or null if the term was not yet requested via prefetchTerms().
40 40
 	 */
41
-	public function getPrefetchedTerm( EntityId $entityId, $termType, $languageCode );
41
+	public function getPrefetchedTerm(EntityId $entityId, $termType, $languageCode);
42 42
 
43 43
 }
Please login to merge, or discard this patch.
src/Lookup/EntityLookupException.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -24,7 +24,7 @@
 block discarded – undo
24 24
 	 * @param string|null $message
25 25
 	 * @param Exception|null $previous
26 26
 	 */
27
-	public function __construct( EntityId $entityId, $message = null, ?Exception $previous = null ) {
27
+	public function __construct(EntityId $entityId, $message = null, ?Exception $previous = null) {
28 28
 		$this->entityId = $entityId;
29 29
 
30 30
 		parent::__construct(
Please login to merge, or discard this patch.
src/Lookup/EntityRedirectLookupException.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -24,7 +24,7 @@
 block discarded – undo
24 24
 	 * @param string|null $message
25 25
 	 * @param Exception|null $previous
26 26
 	 */
27
-	public function __construct( EntityId $entityId, $message = null, ?Exception $previous = null ) {
27
+	public function __construct(EntityId $entityId, $message = null, ?Exception $previous = null) {
28 28
 		$this->entityId = $entityId;
29 29
 
30 30
 		parent::__construct(
Please login to merge, or discard this patch.