Passed
Push — master ( 12c67d...250c4f )
by Sam
02:03
created
examples/humans.php 1 patch
Spacing   +11 added lines, -11 removed lines patch added patch discarded remove patch
@@ -3,21 +3,21 @@  discard block
 block discarded – undo
3 3
 require_once __DIR__ . '/../vendor/autoload.php';
4 4
 
5 5
 // Any PSR6 cache can be used.
6
-$cache = new Stash\Pool( new \Stash\Driver\FileSystem() );
6
+$cache = new Stash\Pool(new \Stash\Driver\FileSystem());
7 7
 
8 8
 /** @var \Samwilson\SimpleWikidata\Items\Human $princeCharles */
9
-$princeCharles = Samwilson\SimpleWikidata\Item::factory( 'Q43274', 'en', $cache );
9
+$princeCharles = Samwilson\SimpleWikidata\Item::factory('Q43274', 'en', $cache);
10 10
 
11
-echo $princeCharles->getLabel().":\n";
11
+echo $princeCharles->getLabel() . ":\n";
12 12
 
13 13
 $refNum = 1;
14 14
 $references = [];
15 15
 
16 16
 /** @var \Samwilson\SimpleWikidata\Properties\Time[] $datesOfBirth */
17 17
 $datesOfBirth = $princeCharles->getDatesOfBirth();
18
-echo "  Date of birth: ".$datesOfBirth[0]->getDateTime()->format( 'j F, Y' )." ";
19
-foreach ( $datesOfBirth[0]->getReferences() as $ref ) {
20
-	if ( $ref->statedIn() ) {
18
+echo "  Date of birth: " . $datesOfBirth[0]->getDateTime()->format('j F, Y') . " ";
19
+foreach ($datesOfBirth[0]->getReferences() as $ref) {
20
+	if ($ref->statedIn()) {
21 21
 		echo "[$refNum]";
22 22
 		$references[$refNum] = $ref;
23 23
 	}
@@ -26,15 +26,15 @@  discard block
 block discarded – undo
26 26
 
27 27
 /** @var \Samwilson\SimpleWikidata\Properties\Item[] $fathers */
28 28
 $fathers = $princeCharles->fathers();
29
-echo "  Father: ".$fathers[0]->getItem()->getLabel() . " ";
30
-foreach ( $fathers[0]->getReferences() as $ref ) {
31
-	if ( $ref->statedIn() ) {
29
+echo "  Father: " . $fathers[0]->getItem()->getLabel() . " ";
30
+foreach ($fathers[0]->getReferences() as $ref) {
31
+	if ($ref->statedIn()) {
32 32
 		echo "[$refNum]";
33 33
 		$references[$refNum] = $ref;
34 34
 	}
35 35
 }
36 36
 echo "\n";
37 37
 
38
-foreach ( $references as $refNum => $ref ) {
39
-	echo "  [$refNum] - " . $ref->statedIn()->getLabel()."\n";
38
+foreach ($references as $refNum => $ref) {
39
+	echo "  [$refNum] - " . $ref->statedIn()->getLabel() . "\n";
40 40
 }
Please login to merge, or discard this patch.
examples/query.php 1 patch
Spacing   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -3,19 +3,19 @@
 block discarded – undo
3 3
 require_once __DIR__ . '/../vendor/autoload.php';
4 4
 
5 5
 // Any PSR6 cache can be used.
6
-$cache = new Stash\Pool( new \Stash\Driver\FileSystem() );
6
+$cache = new Stash\Pool(new \Stash\Driver\FileSystem());
7 7
 
8 8
 $sparql = 'SELECT ?item WHERE {
9 9
   ?item wdt:P31 wd:Q54050
10 10
 } LIMIT 5';
11
-$query = new \Samwilson\SimpleWikidata\Query( $sparql, 'en', $cache );
11
+$query = new \Samwilson\SimpleWikidata\Query($sparql, 'en', $cache);
12 12
 $hills = $query->getItems();
13
-foreach ( $hills as $hill ) {
14
-	$heights = $hill->getPropertyOfTypeQuantity( 'P2044' );
15
-	if ( !$heights ) {
16
-		echo "No heights found for ".$hill->getLabel()."\n";
13
+foreach ($hills as $hill) {
14
+	$heights = $hill->getPropertyOfTypeQuantity('P2044');
15
+	if (!$heights) {
16
+		echo "No heights found for " . $hill->getLabel() . "\n";
17 17
 		continue;
18 18
 	}
19
-	$height = array_shift( $heights );
20
-	echo $hill->getLabel()." is ".$height['amount']." ".$height['unit']->getLabel()." high.\n";
19
+	$height = array_shift($heights);
20
+	echo $hill->getLabel() . " is " . $height['amount'] . " " . $height['unit']->getLabel() . " high.\n";
21 21
 }
Please login to merge, or discard this patch.
src/Items/Edition.php 1 patch
Spacing   +10 added lines, -10 removed lines patch added patch discarded remove patch
@@ -16,22 +16,22 @@  discard block
 block discarded – undo
16 16
 	 * @return string
17 17
 	 */
18 18
 	public function getPublicationYear() {
19
-		$publicationYears = $this->getPropertyOfTypeTime( static::PROP_PUBLICATION_DATE );
20
-		return $publicationYears[0]->getDateTime()->format( 'Y' );
19
+		$publicationYears = $this->getPropertyOfTypeTime(static::PROP_PUBLICATION_DATE);
20
+		return $publicationYears[0]->getDateTime()->format('Y');
21 21
 	}
22 22
 
23 23
 	/**
24 24
 	 * @return \Samwilson\SimpleWikidata\Properties\Item[]
25 25
 	 */
26 26
 	public function getPublishers() {
27
-		return $this->getPropertyOfTypeItem( static::PROP_PUBLISHER );
27
+		return $this->getPropertyOfTypeItem(static::PROP_PUBLISHER);
28 28
 	}
29 29
 
30 30
 	/**
31 31
 	 * @return array|bool
32 32
 	 */
33 33
 	public function getWikisourceIndexPages() {
34
-		return $this->getPropertyOfTypeUrl( $this->getId(), static::PROP_WIKISOURCE_INDEX_PAGE );
34
+		return $this->getPropertyOfTypeUrl($this->getId(), static::PROP_WIKISOURCE_INDEX_PAGE);
35 35
 	}
36 36
 
37 37
 	/**
@@ -50,16 +50,16 @@  discard block
 block discarded – undo
50 50
 	 * @return string[]
51 51
 	 */
52 52
 	public function getWikisourceLink() {
53
-		$entity = $this->getEntity( $this->id );
54
-		if ( !isset( $entity['sitelinks'] ) ) {
53
+		$entity = $this->getEntity($this->id);
54
+		if (!isset($entity['sitelinks'])) {
55 55
 			return [];
56 56
 		}
57
-		foreach ( $entity['sitelinks'] as $sitelink ) {
58
-			if ( strpos( $sitelink['site'], 'wikisource' ) !== false ) {
59
-				$lang = substr( $sitelink['site'], 0, strpos( $sitelink['site'], 'wikisource' ) );
57
+		foreach ($entity['sitelinks'] as $sitelink) {
58
+			if (strpos($sitelink['site'], 'wikisource') !== false) {
59
+				$lang = substr($sitelink['site'], 0, strpos($sitelink['site'], 'wikisource'));
60 60
 				return [
61 61
 					'title' => $sitelink['title'],
62
-					'url' => "https://$lang.wikisource.org/wiki/".$sitelink['title'],
62
+					'url' => "https://$lang.wikisource.org/wiki/" . $sitelink['title'],
63 63
 					'lang' => $lang,
64 64
 				];
65 65
 			}
Please login to merge, or discard this patch.
src/Properties/Time.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -31,14 +31,14 @@
 block discarded – undo
31 31
 	 * @return DateTime
32 32
 	 */
33 33
 	public function getDateTime() {
34
-		return new DateTime( $this->claim['mainsnak']['datavalue']['value']['time'] );
34
+		return new DateTime($this->claim['mainsnak']['datavalue']['value']['time']);
35 35
 	}
36 36
 
37 37
 	/**
38 38
 	 * @return DateTimeZone
39 39
 	 */
40 40
 	public function getTimezone() {
41
-		return new DateTimeZone( $this->claim['mainsnak']['datavalue']['value']['timezone'] );
41
+		return new DateTimeZone($this->claim['mainsnak']['datavalue']['value']['timezone']);
42 42
 	}
43 43
 
44 44
 	/**
Please login to merge, or discard this patch.
src/Properties/Item.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -11,6 +11,6 @@
 block discarded – undo
11 11
 	 */
12 12
 	public function getItem() {
13 13
 		$itemId = $this->claim['mainsnak']['datavalue']['value']['id'];
14
-		return \Samwilson\SimpleWikidata\Item::factory( $itemId, $this->lang, $this->cache );
14
+		return \Samwilson\SimpleWikidata\Item::factory($itemId, $this->lang, $this->cache);
15 15
 	}
16 16
 }
Please login to merge, or discard this patch.
src/Property.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -15,7 +15,7 @@  discard block
 block discarded – undo
15 15
 		/** @var CacheItemPoolInterface */
16 16
 	protected $cache;
17 17
 
18
-		public function __construct( $claim, $lang, $cache ) {
18
+		public function __construct($claim, $lang, $cache) {
19 19
 		$this->claim = $claim;
20 20
 		$this->lang = $lang;
21 21
 		$this->cache = $cache;
@@ -26,11 +26,11 @@  discard block
 block discarded – undo
26 26
 	 */
27 27
 	public function getReferences() {
28 28
 		$references = [];
29
-		if ( !isset( $this->claim['references'] ) ) {
29
+		if (!isset($this->claim['references'])) {
30 30
 			return $references;
31 31
 		}
32
-		foreach ( $this->claim['references'] as $ref ) {
33
-			$references[] = new Reference( $ref, $this->lang, $this->cache );
32
+		foreach ($this->claim['references'] as $ref) {
33
+			$references[] = new Reference($ref, $this->lang, $this->cache);
34 34
 		}
35 35
 		return $references;
36 36
 	}
Please login to merge, or discard this patch.
src/Query.php 1 patch
Spacing   +19 added lines, -19 removed lines patch added patch discarded remove patch
@@ -23,7 +23,7 @@  discard block
 block discarded – undo
23 23
 	 * @param string $lang The language.
24 24
 	 * @param CacheItemPoolInterface $cache The cache.
25 25
 	 */
26
-	public function __construct( $query, $lang, CacheItemPoolInterface $cache ) {
26
+	public function __construct($query, $lang, CacheItemPoolInterface $cache) {
27 27
 		$this->query = $query;
28 28
 		$this->lang = $lang;
29 29
 		$this->cache = $cache;
@@ -34,12 +34,12 @@  discard block
 block discarded – undo
34 34
 	 * @return Item[] The results.
35 35
 	 */
36 36
 	public function getItems() {
37
-		$xml = $this->getXml( $this->query );
37
+		$xml = $this->getXml($this->query);
38 38
 		$results = [];
39
-		foreach ( $xml->results->result as $res ) {
40
-			$result = $this->getBindings( $res );
41
-			$id = substr( $result['item'], strrpos( $result['item'], '/' ) + 1 );
42
-			$item = Item::factory( $id, $this->lang, $this->cache );
39
+		foreach ($xml->results->result as $res) {
40
+			$result = $this->getBindings($res);
41
+			$id = substr($result['item'], strrpos($result['item'], '/') + 1);
42
+			$item = Item::factory($id, $this->lang, $this->cache);
43 43
 			$results[] = $item;
44 44
 		}
45 45
 		return $results;
@@ -50,18 +50,18 @@  discard block
 block discarded – undo
50 50
 	 * @return SimpleXmlElement
51 51
 	 * @throws Exception
52 52
 	 */
53
-	protected function getXml( $query ) {
54
-		$url = "https://query.wikidata.org/bigdata/namespace/wdq/sparql?query=" . urlencode( $query );
53
+	protected function getXml($query) {
54
+		$url = "https://query.wikidata.org/bigdata/namespace/wdq/sparql?query=" . urlencode($query);
55 55
 		try {
56
-			$result = file_get_contents( $url );
57
-		} catch ( Exception $e ) {
58
-			throw new Exception( "Unable to run query: <pre>" . htmlspecialchars( $query ) . "</pre>", 500 );
56
+			$result = file_get_contents($url);
57
+		} catch (Exception $e) {
58
+			throw new Exception("Unable to run query: <pre>" . htmlspecialchars($query) . "</pre>", 500);
59 59
 		}
60
-		if ( empty( $result ) ) {
61
-			$msg = "No result from query: <pre>" . htmlspecialchars( $query ) . "</pre>";
62
-			throw new Exception( $msg, 500 );
60
+		if (empty($result)) {
61
+			$msg = "No result from query: <pre>" . htmlspecialchars($query) . "</pre>";
62
+			throw new Exception($msg, 500);
63 63
 		}
64
-		$xml = new SimpleXmlElement( $result );
64
+		$xml = new SimpleXmlElement($result);
65 65
 		return $xml;
66 66
 	}
67 67
 
@@ -69,13 +69,13 @@  discard block
 block discarded – undo
69 69
 	 * @param SimpleXmlElement $xml The query result XML.
70 70
 	 * @return array
71 71
 	 */
72
-	protected function getBindings( $xml ) {
72
+	protected function getBindings($xml) {
73 73
 		$out = [];
74
-		foreach ( $xml->binding as $binding ) {
75
-			if ( isset( $binding->literal ) ) {
74
+		foreach ($xml->binding as $binding) {
75
+			if (isset($binding->literal)) {
76 76
 				$out[(string)$binding['name']] = (string)$binding->literal;
77 77
 			}
78
-			if ( isset( $binding->uri ) ) {
78
+			if (isset($binding->uri)) {
79 79
 				$out[(string)$binding['name']] = (string)$binding->uri;
80 80
 			}
81 81
 		}
Please login to merge, or discard this patch.
src/Reference.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -22,7 +22,7 @@  discard block
 block discarded – undo
22 22
 	 * @param string $lang ISO639 language code.
23 23
 	 * @param CacheItemPoolInterface $cache The cache.
24 24
 	 */
25
-	public function __construct( $data, $lang, $cache ) {
25
+	public function __construct($data, $lang, $cache) {
26 26
 		$this->data = $data;
27 27
 		$this->lang = $lang;
28 28
 		$this->cache = $cache;
@@ -32,11 +32,11 @@  discard block
 block discarded – undo
32 32
 	 * @return Item|bool The item, or false if there isn't one.
33 33
 	 */
34 34
 	public function statedIn() {
35
-		if ( !isset( $this->data['snaks'][self::STATED_IN] ) ) {
35
+		if (!isset($this->data['snaks'][self::STATED_IN])) {
36 36
 			return false;
37 37
 		}
38
-		foreach ( $this->data['snaks'][self::STATED_IN] as $snak ) {
39
-			return Item::factory( $snak['datavalue']['value']['id'], $this->lang, $this->cache );
38
+		foreach ($this->data['snaks'][self::STATED_IN] as $snak) {
39
+			return Item::factory($snak['datavalue']['value']['id'], $this->lang, $this->cache);
40 40
 		}
41 41
 	}
42 42
 }
Please login to merge, or discard this patch.
src/Item.php 1 patch
Spacing   +118 added lines, -118 removed lines patch added patch discarded remove patch
@@ -33,12 +33,12 @@  discard block
 block discarded – undo
33 33
 	/** @var string The base URL of Wikidata, with trailing slash. */
34 34
 	protected $wikidataUrlBase = 'https://www.wikidata.org/wiki/';
35 35
 
36
-		private function __construct( $id, $lang, CacheItemPoolInterface $cache ) {
37
-		if ( !is_string( $id ) || preg_match( '/[QP][0-9]*/i', $id ) !== 1 ) {
38
-			throw new Exception( "Not a valid ID: " . var_export( $id, true ) );
36
+		private function __construct($id, $lang, CacheItemPoolInterface $cache) {
37
+		if (!is_string($id) || preg_match('/[QP][0-9]*/i', $id) !== 1) {
38
+			throw new Exception("Not a valid ID: " . var_export($id, true));
39 39
 		}
40 40
 		$this->id = $id;
41
-		$this->wdApi = new MediawikiApi( 'https://www.wikidata.org/w/api.php' );
41
+		$this->wdApi = new MediawikiApi('https://www.wikidata.org/w/api.php');
42 42
 		$this->entities = [];
43 43
 		$this->lang = $lang;
44 44
 		$this->cache = $cache;
@@ -52,24 +52,24 @@  discard block
 block discarded – undo
52 52
 	 *
53 53
 	 * @return Item
54 54
 	 */
55
-	public static function factory( $id, $lang, CacheItemPoolInterface $cache ) {
56
-		$item = new Item( $id, $lang, $cache );
57
-		foreach ( $item->getPropertyOfTypeItem( self::PROP_INSTANCE_OF ) as $instanceOf ) {
55
+	public static function factory($id, $lang, CacheItemPoolInterface $cache) {
56
+		$item = new Item($id, $lang, $cache);
57
+		foreach ($item->getPropertyOfTypeItem(self::PROP_INSTANCE_OF) as $instanceOf) {
58 58
 			// Try to find a class mating the 'instance of' name.
59
-			$possibleClassName = __NAMESPACE__ . '\\Items\\' . Str::toCamelCase( $instanceOf->getItem()->getLabel() );
60
-			if ( class_exists( $possibleClassName ) ) {
59
+			$possibleClassName = __NAMESPACE__ . '\\Items\\' . Str::toCamelCase($instanceOf->getItem()->getLabel());
60
+			if (class_exists($possibleClassName)) {
61 61
 				// This won't re-request the metadata, because that's cached.
62
-				$specificItem = new $possibleClassName( $id, $lang, $cache );
62
+				$specificItem = new $possibleClassName($id, $lang, $cache);
63 63
 				return $specificItem;
64 64
 			}
65 65
 		}
66 66
 
67 67
 		// If we're here, just leave it as a basic Item.
68
-		$item->setCache( $cache );
68
+		$item->setCache($cache);
69 69
 		return $item;
70 70
 	}
71 71
 
72
-	public function setCache( CacheItemPoolInterface $cache_item_pool ) {
72
+	public function setCache(CacheItemPoolInterface $cache_item_pool) {
73 73
 		$this->cache = $cache_item_pool;
74 74
 	}
75 75
 
@@ -78,8 +78,8 @@  discard block
 block discarded – undo
78 78
 	 * @return string|bool The ID or false if it couldn't be determined.
79 79
 	 */
80 80
 	public function getId() {
81
-		$entity = $this->getEntity( $this->id );
82
-		return isset( $entity['id'] ) ? $entity['id'] : false;
81
+		$entity = $this->getEntity($this->id);
82
+		return isset($entity['id']) ? $entity['id'] : false;
83 83
 	}
84 84
 
85 85
 	/**
@@ -87,17 +87,17 @@  discard block
 block discarded – undo
87 87
 	 * @return string
88 88
 	 */
89 89
 	public function getLabel() {
90
-		$entity = $this->getEntity( $this->id );
91
-		if ( ! empty( $entity['labels'][ $this->lang ]['value'] ) ) {
90
+		$entity = $this->getEntity($this->id);
91
+		if (!empty($entity['labels'][$this->lang]['value'])) {
92 92
 			// Use the label if there is one.
93
-			return $entity['labels'][ $this->lang ]['value'];
93
+			return $entity['labels'][$this->lang]['value'];
94 94
 		}
95 95
 		// Or just use the ID.
96 96
 		return $entity['id'];
97 97
 	}
98 98
 
99 99
 	public function getWikidataUrl() {
100
-		return $this->wikidataUrlBase.$this->id;
100
+		return $this->wikidataUrlBase . $this->id;
101 101
 	}
102 102
 
103 103
 	/**
@@ -111,32 +111,32 @@  discard block
 block discarded – undo
111 111
 	 * @param string $type
112 112
 	 * @return array
113 113
 	 */
114
-	public function getStandardProperties( $wikiProject = 'WikiProject_Books', $type = 'work' ) {
115
-		if ( $type !== 'work' ) {
114
+	public function getStandardProperties($wikiProject = 'WikiProject_Books', $type = 'work') {
115
+		if ($type !== 'work') {
116 116
 			$type = 'edition';
117 117
 		}
118 118
 		$cacheKey = $type . '_item_property_IDs';
119
-		if ( $this->cache->hasItem( $cacheKey ) ) {
120
-			$propIds = $this->cache->getItem( $cacheKey )->get();
119
+		if ($this->cache->hasItem($cacheKey)) {
120
+			$propIds = $this->cache->getItem($cacheKey)->get();
121 121
 		} else {
122 122
 			$domCrawler = new Crawler();
123 123
 			$wikiProjectUrl = 'https://www.wikidata.org/wiki/Wikidata:' . $wikiProject;
124
-			$domCrawler->addHtmlContent( file_get_contents( $wikiProjectUrl ) );
125
-			$propAncors = "//h3/span[@id='" . ucfirst( $type ) . "_item_properties']/../following-sibling::table[1]//td[2]/a";
126
-			$propCells = $domCrawler->filterXPath( $propAncors );
124
+			$domCrawler->addHtmlContent(file_get_contents($wikiProjectUrl));
125
+			$propAncors = "//h3/span[@id='" . ucfirst($type) . "_item_properties']/../following-sibling::table[1]//td[2]/a";
126
+			$propCells = $domCrawler->filterXPath($propAncors);
127 127
 			$propIds = [];
128
-			$propCells->each( function ( Crawler $node, $i ) use ( &$propIds ) {
128
+			$propCells->each(function(Crawler $node, $i) use (&$propIds) {
129 129
 				$propId = $node->text();
130 130
 				$propIds[] = $propId;
131 131
 			} );
132
-			$cacheItem = $this->cache->getItem( $cacheKey )
133
-				->expiresAfter( new DateInterval( 'PT1H' ) )
134
-				->set( $propIds );
135
-			$this->cache->save( $cacheItem );
132
+			$cacheItem = $this->cache->getItem($cacheKey)
133
+				->expiresAfter(new DateInterval('PT1H'))
134
+				->set($propIds);
135
+			$this->cache->save($cacheItem);
136 136
 		}
137 137
 		$workProperties = [];
138
-		foreach ( $propIds as $propId ) {
139
-			$workProperties[] = self::factory( $propId, $this->lang, $this->cache );
138
+		foreach ($propIds as $propId) {
139
+			$workProperties[] = self::factory($propId, $this->lang, $this->cache);
140 140
 		}
141 141
 
142 142
 		return $workProperties;
@@ -146,17 +146,17 @@  discard block
 block discarded – undo
146 146
 	 * @param string $propertyId
147 147
 	 * @return bool|Time[]
148 148
 	 */
149
-	protected function getPropertyOfTypeTime( $propertyId ) {
149
+	protected function getPropertyOfTypeTime($propertyId) {
150 150
 		$times = [];
151 151
 		$entity = $this->getEntity();
152
-		if ( !isset( $entity['claims'][$propertyId] ) ) {
152
+		if (!isset($entity['claims'][$propertyId])) {
153 153
 			// No statements for this property.
154 154
 			return $times;
155 155
 		}
156 156
 		// print_r($entity['claims'][$propertyId]);exit();
157
-		foreach ( $entity['claims'][$propertyId] as $claim ) {
157
+		foreach ($entity['claims'][$propertyId] as $claim) {
158 158
 			// print_r($claim);
159
-			$times[] = new Time( $claim, $this->lang, $this->cache );
159
+			$times[] = new Time($claim, $this->lang, $this->cache);
160 160
 //
161 161
 // $timeValue = $claim['datavalue']['value']['time'];
162 162
 // // Ugly workaround for imprecise dates. :-(
@@ -178,28 +178,28 @@  discard block
 block discarded – undo
178 178
 	 *
179 179
 	 * @return \Samwilson\SimpleWikidata\Properties\Item[]
180 180
 	 */
181
-	protected function getPropertyOfTypeItem( $propertyId ) {
182
-		$entity = $this->getEntity( $this->id );
183
-		if ( !isset( $entity['claims'][$propertyId] ) ) {
181
+	protected function getPropertyOfTypeItem($propertyId) {
182
+		$entity = $this->getEntity($this->id);
183
+		if (!isset($entity['claims'][$propertyId])) {
184 184
 			return [];
185 185
 		}
186 186
 		$items = [];
187
-		foreach ( $entity['claims'][$propertyId] as $claim ) {
188
-			$items[] = new Properties\Item( $claim, $this->lang, $this->cache );
187
+		foreach ($entity['claims'][$propertyId] as $claim) {
188
+			$items[] = new Properties\Item($claim, $this->lang, $this->cache);
189 189
 		}
190 190
 
191 191
 		return $items;
192 192
 	}
193 193
 
194
-	public function setPropertyOfTypeItem( $property, $itemId ) {
195
-		$itemIdNumeric = substr( $itemId, 1 );
194
+	public function setPropertyOfTypeItem($property, $itemId) {
195
+		$itemIdNumeric = substr($itemId, 1);
196 196
 
197 197
 		// First see if this property already exists, and that it is different from what's being set.
198
-		$entity = $this->getEntity( $this->id );
199
-		if ( !empty( $entity['claims'][$property] ) ) {
198
+		$entity = $this->getEntity($this->id);
199
+		if (!empty($entity['claims'][$property])) {
200 200
 			// Get the first claim, and update it if necessary.
201
-			$claim = array_shift( $entity['claims'][$property] );
202
-			if ( $claim['mainsnak']['datavalue']['value']['id'] == $itemId ) {
201
+			$claim = array_shift($entity['claims'][$property]);
202
+			if ($claim['mainsnak']['datavalue']['value']['id'] == $itemId) {
203 203
 				// Already is the required value, no need to change.
204 204
 				return;
205 205
 			}
@@ -207,58 +207,58 @@  discard block
 block discarded – undo
207 207
 			$claim['mainsnak']['datavalue']['value']['numeric-id'] = $itemIdNumeric;
208 208
 			$apiParams = [
209 209
 				'action' => 'wbsetclaim',
210
-				'claim' => json_encode( $claim ),
210
+				'claim' => json_encode($claim),
211 211
 			];
212 212
 		}
213 213
 
214 214
 		// If no claim was found (and modified) above, create a new claim.
215
-		if ( !isset( $apiParams ) ) {
215
+		if (!isset($apiParams)) {
216 216
 			$apiParams = [
217 217
 				'action' => 'wbcreateclaim',
218 218
 				'entity' => $this->getId(),
219 219
 				'property' => $property,
220 220
 				'snaktype' => 'value',
221
-				'value' => json_encode( [ 'entity-type' => 'item', 'numeric-id' => $itemIdNumeric ] ),
221
+				'value' => json_encode(['entity-type' => 'item', 'numeric-id' => $itemIdNumeric]),
222 222
 			];
223 223
 		}
224 224
 
225 225
 		// Save the property.
226 226
 		$wdWpOauth = new WdOauth();
227
-		$wdWpOauth->makeCall( $apiParams, true );
227
+		$wdWpOauth->makeCall($apiParams, true);
228 228
 
229 229
 		// Clear the cache.
230
-		$this->cache->deleteItem( $this->getEntityCacheKey( $this->id ) );
230
+		$this->cache->deleteItem($this->getEntityCacheKey($this->id));
231 231
 	}
232 232
 
233
-	public function getPropertyOfTypeUrl( $entityId, $propertyId ) {
234
-		$entity = $this->getEntity( $entityId );
235
-		if ( !isset( $entity['claims'][$propertyId] ) ) {
233
+	public function getPropertyOfTypeUrl($entityId, $propertyId) {
234
+		$entity = $this->getEntity($entityId);
235
+		if (!isset($entity['claims'][$propertyId])) {
236 236
 			return false;
237 237
 		}
238 238
 		$urls = [];
239
-		foreach ( $entity['claims'][$propertyId] as $claim ) {
239
+		foreach ($entity['claims'][$propertyId] as $claim) {
240 240
 			$urls[] = $claim['mainsnak']['datavalue']['value'];
241 241
 		}
242 242
 
243 243
 		return $urls;
244 244
 	}
245 245
 
246
-	public function getPropertyOfTypeExternalIdentifier( $entityId, $propertyId ) {
247
-		$entity = $this->getEntity( $entityId );
248
-		if ( !isset( $entity['claims'][$propertyId] ) ) {
246
+	public function getPropertyOfTypeExternalIdentifier($entityId, $propertyId) {
247
+		$entity = $this->getEntity($entityId);
248
+		if (!isset($entity['claims'][$propertyId])) {
249 249
 			return false;
250 250
 		}
251 251
 		$idents = [];
252
-		foreach ( $entity['claims'][$propertyId] as $claim ) {
252
+		foreach ($entity['claims'][$propertyId] as $claim) {
253 253
 			$qualifiers = [];
254
-			if ( !isset( $claim['qualifiers'] ) ) {
254
+			if (!isset($claim['qualifiers'])) {
255 255
 				continue;
256 256
 			}
257
-			foreach ( $claim['qualifiers'] as $qualsInfo ) {
258
-				foreach ( $qualsInfo as $qualInfo ) {
259
-					$qualProp = self::factory( $qualInfo['property'], $this->lang, $this->cache );
257
+			foreach ($claim['qualifiers'] as $qualsInfo) {
258
+				foreach ($qualsInfo as $qualInfo) {
259
+					$qualProp = self::factory($qualInfo['property'], $this->lang, $this->cache);
260 260
 					$propLabel = $qualProp->getLabel();
261
-					if ( !isset( $qualifiers[$propLabel] ) ) {
261
+					if (!isset($qualifiers[$propLabel])) {
262 262
 						$qualifiers[$propLabel] = [];
263 263
 					}
264 264
 					$qualifiers[$propLabel][] = $qualInfo['datavalue']['value'];
@@ -278,17 +278,17 @@  discard block
 block discarded – undo
278 278
 	 * @param string $property One of the PROP_* constants.
279 279
 	 * @return string|bool The value, or false if it can't be found.
280 280
 	 */
281
-	public function getPropertyOfTypeText( $property ) {
282
-		$entity = $this->getEntity( $this->id );
283
-		if ( isset( $entity['claims'][$property] ) ) {
281
+	public function getPropertyOfTypeText($property) {
282
+		$entity = $this->getEntity($this->id);
283
+		if (isset($entity['claims'][$property])) {
284 284
 			// Use the first title.
285
-			foreach ( $entity['claims'][$property] as $t ) {
286
-				if ( !isset( $t['mainsnak']['datavalue']['value']['language'] ) ) {
287
-					var_dump( $t['mainsnak']['datavalue']['value'] );
285
+			foreach ($entity['claims'][$property] as $t) {
286
+				if (!isset($t['mainsnak']['datavalue']['value']['language'])) {
287
+					var_dump($t['mainsnak']['datavalue']['value']);
288 288
 					exit();
289 289
 				}
290
-				if ( $t['mainsnak']['datavalue']['value']['language'] == $this->lang
291
-					&& !empty( $t['mainsnak']['datavalue']['value']['text'] )
290
+				if ($t['mainsnak']['datavalue']['value']['language'] == $this->lang
291
+					&& !empty($t['mainsnak']['datavalue']['value']['text'])
292 292
 				) {
293 293
 					return $t['mainsnak']['datavalue']['value']['text'];
294 294
 				}
@@ -306,16 +306,16 @@  discard block
 block discarded – undo
306 306
 	 * @param $property
307 307
 	 * @return mixed[]|bool If it's not false it's an array with 'amount', 'unit', etc.
308 308
 	 */
309
-	public function getPropertyOfTypeQuantity( $property ) {
309
+	public function getPropertyOfTypeQuantity($property) {
310 310
 		$quantities = [];
311
-		$entity = $this->getEntity( $this->id );
312
-		if ( !isset( $entity['claims'][$property] ) ) {
311
+		$entity = $this->getEntity($this->id);
312
+		if (!isset($entity['claims'][$property])) {
313 313
 			return false;
314 314
 		}
315
-		foreach ( $entity['claims'][$property] as $t ) {
315
+		foreach ($entity['claims'][$property] as $t) {
316 316
 			$quantity = $t['mainsnak']['datavalue']['value'];
317
-			$unitId = substr( $quantity['unit'], strlen( $this->wikidataUrlBase ) + 1 );
318
-			$quantity['unit'] = self::factory( $unitId, $this->lang, $this->cache );
317
+			$unitId = substr($quantity['unit'], strlen($this->wikidataUrlBase) + 1);
318
+			$quantity['unit'] = self::factory($unitId, $this->lang, $this->cache);
319 319
 			$quantities[] = $quantity;
320 320
 		}
321 321
 		return $quantities;
@@ -326,19 +326,19 @@  discard block
 block discarded – undo
326 326
 	 * @param string $property One of the PROP_* constants.
327 327
 	 * @param string $value The value.
328 328
 	 */
329
-	public function setPropertyOfTypeText( $property, $value ) {
329
+	public function setPropertyOfTypeText($property, $value) {
330 330
 		// First see if this property already exists, and that it is different from what's being set.
331
-		$entity = $this->getEntity( $this->id );
332
-		if ( !empty( $entity['claims'][$property] ) ) {
331
+		$entity = $this->getEntity($this->id);
332
+		if (!empty($entity['claims'][$property])) {
333 333
 			// Find this language's claim (if there is one).
334
-			foreach ( $entity['claims'][$property] as $claim ) {
335
-				if ( $claim['mainsnak']['datavalue']['value']['language'] == $this->lang ) {
334
+			foreach ($entity['claims'][$property] as $claim) {
335
+				if ($claim['mainsnak']['datavalue']['value']['language'] == $this->lang) {
336 336
 					// Modify this claim's text value.
337 337
 					$titleClaim = $claim;
338 338
 					$titleClaim['mainsnak']['datavalue']['value']['text'] = $value;
339 339
 					$setTitleParams = [
340 340
 						'action' => 'wbsetclaim',
341
-						'claim' => \GuzzleHttp\json_encode( $titleClaim ),
341
+						'claim' => \GuzzleHttp\json_encode($titleClaim),
342 342
 					];
343 343
 					continue;
344 344
 				}
@@ -346,27 +346,27 @@  discard block
 block discarded – undo
346 346
 		}
347 347
 
348 348
 		// If no claim was found (and modified) above, create a new claim.
349
-		if ( !isset( $setTitleParams ) ) {
349
+		if (!isset($setTitleParams)) {
350 350
 			$setTitleParams = [
351 351
 				'action' => 'wbcreateclaim',
352 352
 				'entity' => $this->getId(),
353 353
 				'property' => $property,
354 354
 				'snaktype' => 'value',
355
-				'value' => \GuzzleHttp\json_encode( [ 'text' => $value, 'language' => $this->lang ] ),
355
+				'value' => \GuzzleHttp\json_encode(['text' => $value, 'language' => $this->lang]),
356 356
 			];
357 357
 		}
358 358
 
359 359
 		// Save the property.
360 360
 		$wdWpOauth = new WdWpOauth();
361
-		$wdWpOauth->makeCall( $setTitleParams, true );
361
+		$wdWpOauth->makeCall($setTitleParams, true);
362 362
 
363 363
 		// Clear the cache.
364
-		$this->cache->deleteItem( $this->getEntityCacheKey( $this->id ) );
364
+		$this->cache->deleteItem($this->getEntityCacheKey($this->id));
365 365
 	}
366 366
 
367 367
 	public function getInstanceOf() {
368
-		$instancesOf = $this->getPropertyOfTypeItem( $this->getId(), self::PROP_INSTANCE_OF );
369
-		return array_shift( $instancesOf );
368
+		$instancesOf = $this->getPropertyOfTypeItem($this->getId(), self::PROP_INSTANCE_OF);
369
+		return array_shift($instancesOf);
370 370
 	}
371 371
 
372 372
 	/**
@@ -379,31 +379,31 @@  discard block
 block discarded – undo
379 379
 
380 380
 	public function getWikipediaIntro() {
381 381
 		$cacheKey = 'wikipedia-intro-' . $this->id . $this->lang;
382
-		if ( $this->cache->hasItem( $cacheKey ) ) {
383
-			return $this->cache->getItem( $cacheKey )->get();
382
+		if ($this->cache->hasItem($cacheKey)) {
383
+			return $this->cache->getItem($cacheKey)->get();
384 384
 		}
385
-		$entity = $this->getEntity( $this->id );
386
-		if ( !isset( $entity['sitelinks'] ) ) {
385
+		$entity = $this->getEntity($this->id);
386
+		if (!isset($entity['sitelinks'])) {
387 387
 			return [];
388 388
 		}
389
-		foreach ( $entity['sitelinks'] as $sitelink ) {
390
-			if ( $sitelink['site'] == $this->lang . 'wiki' ) {
391
-				$api = new MediawikiApi( 'https://' . $this->lang . '.wikipedia.org/w/api.php' );
392
-				$req = new SimpleRequest( 'query', [
389
+		foreach ($entity['sitelinks'] as $sitelink) {
390
+			if ($sitelink['site'] == $this->lang . 'wiki') {
391
+				$api = new MediawikiApi('https://' . $this->lang . '.wikipedia.org/w/api.php');
392
+				$req = new SimpleRequest('query', [
393 393
 					'prop' => 'extracts',
394 394
 					'exintro' => true,
395 395
 					'titles' => $sitelink['title'],
396
-				] );
397
-				$response = $api->getRequest( $req );
398
-				$page = array_shift( $response['query']['pages'] );
396
+				]);
397
+				$response = $api->getRequest($req);
398
+				$page = array_shift($response['query']['pages']);
399 399
 				$out = [
400 400
 					'title' => $page['title'],
401 401
 					'html' => $page['extract'],
402 402
 				];
403
-				$cacheItem = $this->cache->getItem( $cacheKey )
404
-					->expiresAfter( new DateInterval( 'P1D' ) )
405
-					->set( $out );
406
-				$this->cache->save( $cacheItem );
403
+				$cacheItem = $this->cache->getItem($cacheKey)
404
+					->expiresAfter(new DateInterval('P1D'))
405
+					->set($out);
406
+				$this->cache->save($cacheItem);
407 407
 
408 408
 				return $out;
409 409
 			}
@@ -418,22 +418,22 @@  discard block
 block discarded – undo
418 418
 	 * @param bool $ignoreCache
419 419
 	 * @return bool
420 420
 	 */
421
-	public function getEntity( $id = null, $ignoreCache = false ) {
421
+	public function getEntity($id = null, $ignoreCache = false) {
422 422
 		$idActual = $id ?: $this->id;
423
-		$cacheKey = $this->getEntityCacheKey( $idActual );
424
-		if ( !$ignoreCache && $this->cache->hasItem( $cacheKey ) ) {
425
-			return $this->cache->getItem( $cacheKey )->get();
423
+		$cacheKey = $this->getEntityCacheKey($idActual);
424
+		if (!$ignoreCache && $this->cache->hasItem($cacheKey)) {
425
+			return $this->cache->getItem($cacheKey)->get();
426 426
 		}
427
-		$metadataRequest = new SimpleRequest( 'wbgetentities', [ 'ids' => $idActual ] );
428
-		$itemResult = $this->wdApi->getRequest( $metadataRequest );
429
-		if ( !isset( $itemResult['success'] ) || !isset( $itemResult['entities'][$id] ) ) {
427
+		$metadataRequest = new SimpleRequest('wbgetentities', ['ids' => $idActual]);
428
+		$itemResult = $this->wdApi->getRequest($metadataRequest);
429
+		if (!isset($itemResult['success']) || !isset($itemResult['entities'][$id])) {
430 430
 			return false;
431 431
 		}
432 432
 		$metadata = $itemResult['entities'][$idActual];
433
-		$cacheItem = $this->cache->getItem( $cacheKey )
434
-			->expiresAfter( new DateInterval( 'PT10M' ) )
435
-			->set( $metadata );
436
-		$this->cache->save( $cacheItem );
433
+		$cacheItem = $this->cache->getItem($cacheKey)
434
+			->expiresAfter(new DateInterval('PT10M'))
435
+			->set($metadata);
436
+		$this->cache->save($cacheItem);
437 437
 		return $metadata;
438 438
 	}
439 439
 
@@ -442,7 +442,7 @@  discard block
 block discarded – undo
442 442
 	 *
443 443
 	 * @return string
444 444
 	 */
445
-	protected function getEntityCacheKey( $id ) {
445
+	protected function getEntityCacheKey($id) {
446 446
 		return 'entities' . $id;
447 447
 	}
448 448
 }
Please login to merge, or discard this patch.