Passed
Push — master ( 12c67d...250c4f )
by Sam
02:03
created
src/Items/Human.php 1 patch
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -24,41 +24,41 @@
 block discarded – undo
24 24
 	 * @return bool|\Samwilson\SimpleWikidata\Properties\Time[]
25 25
 	 */
26 26
 	public function getDatesOfBirth() {
27
-		return $this->getPropertyOfTypeTime( self::PROP_DATE_OF_BIRTH );
27
+		return $this->getPropertyOfTypeTime(self::PROP_DATE_OF_BIRTH);
28 28
 	}
29 29
 
30 30
 	/**
31 31
 	 * @return bool|\Samwilson\SimpleWikidata\Properties\Time[]
32 32
 	 */
33 33
 	public function getDatesOfDeath() {
34
-		return $this->getPropertyOfTypeTime( self::PROP_DATE_OF_DEATH );
34
+		return $this->getPropertyOfTypeTime(self::PROP_DATE_OF_DEATH);
35 35
 	}
36 36
 
37 37
 	/**
38 38
 	 * @return \Samwilson\SimpleWikidata\Properties\Item[]
39 39
 	 */
40 40
 	public function fathers() {
41
-		return $this->getPropertyOfTypeItem( self::PROP_FATHER );
41
+		return $this->getPropertyOfTypeItem(self::PROP_FATHER);
42 42
 	}
43 43
 
44 44
 	/**
45 45
 	 * @return \Samwilson\SimpleWikidata\Properties\Item[]
46 46
 	 */
47 47
 	public function mothers() {
48
-		return $this->getPropertyOfTypeItem( self::PROP_FATHER );
48
+		return $this->getPropertyOfTypeItem(self::PROP_FATHER);
49 49
 	}
50 50
 
51 51
 	/**
52 52
 	 * @return \Samwilson\SimpleWikidata\Properties\Item[]
53 53
 	 */
54 54
 	public function spouses() {
55
-		return $this->getPropertyOfTypeItem( self::PROP_SPOUSE );
55
+		return $this->getPropertyOfTypeItem(self::PROP_SPOUSE);
56 56
 	}
57 57
 
58 58
 	/**
59 59
 	 * @return \Samwilson\SimpleWikidata\Properties\Item[]
60 60
 	 */
61 61
 	public function children() {
62
-		return $this->getPropertyOfTypeItem( self::PROP_CHILD );
62
+		return $this->getPropertyOfTypeItem(self::PROP_CHILD);
63 63
 	}
64 64
 }
Please login to merge, or discard this patch.