Passed
Push — master ( 12c67d...250c4f )
by Sam
02:03
created
src/Items/Human.php 2 patches
Indentation   +44 added lines, -44 removed lines patch added patch discarded remove patch
@@ -9,56 +9,56 @@
 block discarded – undo
9 9
  */
10 10
 class Human extends Item {
11 11
 
12
-	const PROP_DATE_OF_BIRTH = 'P569';
13
-	const PROP_PLACE_OF_BIRTH = 'P19';
12
+    const PROP_DATE_OF_BIRTH = 'P569';
13
+    const PROP_PLACE_OF_BIRTH = 'P19';
14 14
 
15
-	const PROP_DATE_OF_DEATH = 'P570';
16
-	const PROP_PLACE_OF_DEATH = 'P20';
15
+    const PROP_DATE_OF_DEATH = 'P570';
16
+    const PROP_PLACE_OF_DEATH = 'P20';
17 17
 
18
-	const PROP_FATHER = 'P22';
19
-	const PROP_MOTHER = 'P25';
20
-	const PROP_SPOUSE = 'P26';
21
-	const PROP_CHILD = 'P40';
18
+    const PROP_FATHER = 'P22';
19
+    const PROP_MOTHER = 'P25';
20
+    const PROP_SPOUSE = 'P26';
21
+    const PROP_CHILD = 'P40';
22 22
 
23
-	/**
24
-	 * @return bool|\Samwilson\SimpleWikidata\Properties\Time[]
25
-	 */
26
-	public function getDatesOfBirth() {
27
-		return $this->getPropertyOfTypeTime( self::PROP_DATE_OF_BIRTH );
28
-	}
23
+    /**
24
+     * @return bool|\Samwilson\SimpleWikidata\Properties\Time[]
25
+     */
26
+    public function getDatesOfBirth() {
27
+        return $this->getPropertyOfTypeTime( self::PROP_DATE_OF_BIRTH );
28
+    }
29 29
 
30
-	/**
31
-	 * @return bool|\Samwilson\SimpleWikidata\Properties\Time[]
32
-	 */
33
-	public function getDatesOfDeath() {
34
-		return $this->getPropertyOfTypeTime( self::PROP_DATE_OF_DEATH );
35
-	}
30
+    /**
31
+     * @return bool|\Samwilson\SimpleWikidata\Properties\Time[]
32
+     */
33
+    public function getDatesOfDeath() {
34
+        return $this->getPropertyOfTypeTime( self::PROP_DATE_OF_DEATH );
35
+    }
36 36
 
37
-	/**
38
-	 * @return \Samwilson\SimpleWikidata\Properties\Item[]
39
-	 */
40
-	public function fathers() {
41
-		return $this->getPropertyOfTypeItem( self::PROP_FATHER );
42
-	}
37
+    /**
38
+     * @return \Samwilson\SimpleWikidata\Properties\Item[]
39
+     */
40
+    public function fathers() {
41
+        return $this->getPropertyOfTypeItem( self::PROP_FATHER );
42
+    }
43 43
 
44
-	/**
45
-	 * @return \Samwilson\SimpleWikidata\Properties\Item[]
46
-	 */
47
-	public function mothers() {
48
-		return $this->getPropertyOfTypeItem( self::PROP_FATHER );
49
-	}
44
+    /**
45
+     * @return \Samwilson\SimpleWikidata\Properties\Item[]
46
+     */
47
+    public function mothers() {
48
+        return $this->getPropertyOfTypeItem( self::PROP_FATHER );
49
+    }
50 50
 
51
-	/**
52
-	 * @return \Samwilson\SimpleWikidata\Properties\Item[]
53
-	 */
54
-	public function spouses() {
55
-		return $this->getPropertyOfTypeItem( self::PROP_SPOUSE );
56
-	}
51
+    /**
52
+     * @return \Samwilson\SimpleWikidata\Properties\Item[]
53
+     */
54
+    public function spouses() {
55
+        return $this->getPropertyOfTypeItem( self::PROP_SPOUSE );
56
+    }
57 57
 
58
-	/**
59
-	 * @return \Samwilson\SimpleWikidata\Properties\Item[]
60
-	 */
61
-	public function children() {
62
-		return $this->getPropertyOfTypeItem( self::PROP_CHILD );
63
-	}
58
+    /**
59
+     * @return \Samwilson\SimpleWikidata\Properties\Item[]
60
+     */
61
+    public function children() {
62
+        return $this->getPropertyOfTypeItem( self::PROP_CHILD );
63
+    }
64 64
 }
Please login to merge, or discard this 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.