Completed
Push — master ( 1c26be...19bb2d )
by Basil
05:42
created
core/web/jsonld/EventInterface.php 1 patch
Doc Comments   +2 added lines patch added patch discarded remove patch
@@ -160,6 +160,7 @@  discard block
 block discarded – undo
160 160
 
161 161
     /**
162 162
      * @param int $maximumAttendeeCapacity
163
+     * @return void
163 164
      */
164 165
     public function setMaximumAttendeeCapacity($maximumAttendeeCapacity);
165 166
 
@@ -247,6 +248,7 @@  discard block
 block discarded – undo
247 248
 
248 249
     /**
249 250
      * @param Event $subEvent
251
+     * @return void
250 252
      */
251 253
     public function setSubEvent(Event $subEvent);
252 254
 
Please login to merge, or discard this patch.
core/web/jsonld/PersonTrait.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -47,7 +47,7 @@  discard block
 block discarded – undo
47 47
     /**
48 48
      * Physical address of the item.
49 49
      *
50
-     * @param PostalAddress|string $address
50
+     * @param PostalAddress $address
51 51
      * @return PersonTrait
52 52
      */
53 53
     public function setAddress(PostalAddress $address)
@@ -294,7 +294,7 @@  discard block
 block discarded – undo
294 294
     /**
295 295
      * The Dun & Bradstreet DUNS number for identifying an organization or business person.
296 296
      *
297
-     * @param string $duns
297
+     * @param Person $duns
298 298
      * @return PersonTrait
299 299
      */
300 300
     public function setDuns(Person $duns)
Please login to merge, or discard this patch.
core/web/jsonld/PlaceInterface.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -27,7 +27,7 @@
 block discarded – undo
27 27
     public function getAddress();
28 28
 
29 29
     /**
30
-     * @param PostalAddress|string $address
30
+     * @param PostalAddress $address
31 31
      * @return PlaceTrait
32 32
      */
33 33
     public function setAddress(PostalAddress $address);
Please login to merge, or discard this patch.
core/web/jsonld/PlaceTrait.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -51,7 +51,7 @@
 block discarded – undo
51 51
     /**
52 52
      * Physical address of the item.
53 53
      *
54
-     * @param PostalAddress|string $address
54
+     * @param PostalAddress $address
55 55
      * @return PlaceTrait
56 56
      */
57 57
     public function setAddress(PostalAddress $address)
Please login to merge, or discard this patch.
core/web/jsonld/ImageObjectTrait.php 1 patch
Indentation   +40 added lines, -40 removed lines patch added patch discarded remove patch
@@ -12,58 +12,58 @@
 block discarded – undo
12 12
 {
13 13
     use MediaObjectTrait;
14 14
 	
15
-	private $_caption;
15
+    private $_caption;
16 16
 	
17
-	public function setCaption($caption)
18
-	{
19
-	    $this->_caption = $caption;
20
-	    return $this;
21
-	}
17
+    public function setCaption($caption)
18
+    {
19
+        $this->_caption = $caption;
20
+        return $this;
21
+    }
22 22
 	
23
-	public function getCaption()
24
-	{
25
-	    return $this->_caption;
26
-	}
23
+    public function getCaption()
24
+    {
25
+        return $this->_caption;
26
+    }
27 27
 	
28
-	private $_exifData;
28
+    private $_exifData;
29 29
 	
30
-	public function setExifData(PropertyValue $propertyValue)
31
-	{
32
-	   $this->_exifData = $propertyValue;
30
+    public function setExifData(PropertyValue $propertyValue)
31
+    {
32
+        $this->_exifData = $propertyValue;
33 33
 	   
34
-	   return $this;
35
-	}
34
+        return $this;
35
+    }
36 36
 	
37
-	public function getExifData()
38
-	{
39
-	    return $this->_exifData;
40
-	}
37
+    public function getExifData()
38
+    {
39
+        return $this->_exifData;
40
+    }
41 41
 	
42
-	private $_representativeOfPage;
42
+    private $_representativeOfPage;
43 43
 	
44
-	public function setRepresentativeOfPage($representativeOfPage)
45
-	{
46
-	   $this->_representativeOfPage = $representativeOfPage;
44
+    public function setRepresentativeOfPage($representativeOfPage)
45
+    {
46
+        $this->_representativeOfPage = $representativeOfPage;
47 47
 	   
48
-	   return $this;
49
-	}
48
+        return $this;
49
+    }
50 50
 	
51
-	public function getRepresentativeOfPage()
52
-	{
53
-	    return $this->_representativeOfPage;
54
-	}
51
+    public function getRepresentativeOfPage()
52
+    {
53
+        return $this->_representativeOfPage;
54
+    }
55 55
 	
56
-	private $_thumbnail;
56
+    private $_thumbnail;
57 57
 	
58
-	public function setThumbnail(ImageObject $imageObject)
59
-	{
60
-	    $this->_thumbnail = $imageObject;
58
+    public function setThumbnail(ImageObject $imageObject)
59
+    {
60
+        $this->_thumbnail = $imageObject;
61 61
 	    
62
-	    return $this;
63
-	}
62
+        return $this;
63
+    }
64 64
 	
65
-	public function getThumbnail()
66
-	{
67
-	    return $this->_thumbnail;
68
-	}
65
+    public function getThumbnail()
66
+    {
67
+        return $this->_thumbnail;
68
+    }
69 69
 }
70 70
\ No newline at end of file
Please login to merge, or discard this patch.
core/web/jsonld/ImageObject.php 1 patch
Indentation   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -12,11 +12,11 @@
 block discarded – undo
12 12
 {
13 13
     use ImageObjectTrait;
14 14
     
15
-	/**
16
-	 * @inheritdoc
17
- 	 */
18
-	public function typeDefintion()
19
-	{
20
-		return 'ImageObject';
21
-	}
15
+    /**
16
+     * @inheritdoc
17
+     */
18
+    public function typeDefintion()
19
+    {
20
+        return 'ImageObject';
21
+    }
22 22
 }
23 23
\ No newline at end of file
Please login to merge, or discard this patch.
core/web/jsonld/ImageObjectInterface.php 1 patch
Indentation   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -10,19 +10,19 @@
 block discarded – undo
10 10
  */
11 11
 interface ImageObjectInterface extends MediaObjectInterface
12 12
 {
13
-	public function setCaption($caption);
13
+    public function setCaption($caption);
14 14
 	
15
-	public function getCaption();
15
+    public function getCaption();
16 16
 	
17
-	public function setExifData(PropertyValue $propertyValue);
17
+    public function setExifData(PropertyValue $propertyValue);
18 18
 	
19
-	public function getExifData();
19
+    public function getExifData();
20 20
 	
21
-	public function setRepresentativeOfPage($representativeOfPage);
21
+    public function setRepresentativeOfPage($representativeOfPage);
22 22
 	
23
-	public function getRepresentativeOfPage();
23
+    public function getRepresentativeOfPage();
24 24
 	
25
-	public function setThumbnail(ImageObject $imageObject);
25
+    public function setThumbnail(ImageObject $imageObject);
26 26
 	
27
-	public function getThumbnail();
27
+    public function getThumbnail();
28 28
 }
29 29
\ No newline at end of file
Please login to merge, or discard this patch.
core/web/jsonld/PropertyValueInterface.php 1 patch
Indentation   +14 added lines, -14 removed lines patch added patch discarded remove patch
@@ -10,31 +10,31 @@
 block discarded – undo
10 10
  */
11 11
 interface PropertyValueInterface extends ThingInterface
12 12
 {
13
-	public function setMaxValue($maxValue);
13
+    public function setMaxValue($maxValue);
14 14
 	
15
-	public function getMaxValue();
15
+    public function getMaxValue();
16 16
 	
17
-	public function setMeasurementTechnique($measurementTechnique);
17
+    public function setMeasurementTechnique($measurementTechnique);
18 18
 	
19
-	public function getMeasurementTechnique();
19
+    public function getMeasurementTechnique();
20 20
 	
21
-	public function setMinValue($minValue);
21
+    public function setMinValue($minValue);
22 22
 	
23
-	public function getMinValue();
23
+    public function getMinValue();
24 24
 	
25
-	public function setPropertyID($propertyID);
25
+    public function setPropertyID($propertyID);
26 26
 
27
-	public function getPropertyID();
27
+    public function getPropertyID();
28 28
 	
29
-	public function setUnitCode($unitCode);
29
+    public function setUnitCode($unitCode);
30 30
 	
31
-	public function getUnitCode();
31
+    public function getUnitCode();
32 32
 	
33
-	public function setUnitText($uniText);
33
+    public function setUnitText($uniText);
34 34
 
35
-	public function getUnitText();
35
+    public function getUnitText();
36 36
 	
37
-	public function setValue($value);
37
+    public function setValue($value);
38 38
 
39
-	public function getValue();
39
+    public function getValue();
40 40
 }
41 41
\ No newline at end of file
Please login to merge, or discard this patch.
core/web/jsonld/PropertyValueTrait.php 1 patch
Indentation   +71 added lines, -71 removed lines patch added patch discarded remove patch
@@ -10,103 +10,103 @@
 block discarded – undo
10 10
  */
11 11
 trait PropertyValueTrait
12 12
 {
13
-	use ThingTrait;
13
+    use ThingTrait;
14 14
 	
15
-	private $_maxValue;
15
+    private $_maxValue;
16 16
 	
17
-	public function setMaxValue($maxValue)
18
-	{
19
-	    $this->_maxValue = $maxValue;
17
+    public function setMaxValue($maxValue)
18
+    {
19
+        $this->_maxValue = $maxValue;
20 20
 	    
21
-	    return $this;
22
-	}
21
+        return $this;
22
+    }
23 23
 	
24
-	public function getMaxValue()
25
-	{
26
-	    return $this->_maxValue;
27
-	}
24
+    public function getMaxValue()
25
+    {
26
+        return $this->_maxValue;
27
+    }
28 28
 	
29
-	private $_minValue;
29
+    private $_minValue;
30 30
 	
31
-	public function setMinValue($minValue)
32
-	{
33
-	   $this->_minValue = $minValue;
31
+    public function setMinValue($minValue)
32
+    {
33
+        $this->_minValue = $minValue;
34 34
 	   
35
-	   return $this;
36
-	}
35
+        return $this;
36
+    }
37 37
 	
38
-	public function getMinValue()
39
-	{
40
-	    return $this->_minValue;
41
-	}
38
+    public function getMinValue()
39
+    {
40
+        return $this->_minValue;
41
+    }
42 42
 	
43
-	private $_measurementTechnique;
43
+    private $_measurementTechnique;
44 44
 	
45
-	public function setMeasurementTechnique($measurementTechnique)
46
-	{
47
-	    $this->_measurementTechnique = $measurementTechnique;
45
+    public function setMeasurementTechnique($measurementTechnique)
46
+    {
47
+        $this->_measurementTechnique = $measurementTechnique;
48 48
 	    
49
-	    return $this;
50
-	}
49
+        return $this;
50
+    }
51 51
 	
52
-	public function getMeasurementTechnique()
53
-	{
54
-	    return $this->_measurementTechnique;
55
-	}
52
+    public function getMeasurementTechnique()
53
+    {
54
+        return $this->_measurementTechnique;
55
+    }
56 56
 	
57
-	private $_propertyId;
57
+    private $_propertyId;
58 58
 	
59
-	public function setPropertyID($propertyID)
60
-	{
61
-	    $this->_propertyId = $propertyID;
59
+    public function setPropertyID($propertyID)
60
+    {
61
+        $this->_propertyId = $propertyID;
62 62
 	    
63
-	    return $this;
64
-	}
63
+        return $this;
64
+    }
65 65
 	
66
-	public function getPropertyID()
67
-	{
68
-	    return $this->_propertyId;
69
-	}
66
+    public function getPropertyID()
67
+    {
68
+        return $this->_propertyId;
69
+    }
70 70
 	
71
-	private $_unitCode;
71
+    private $_unitCode;
72 72
 	
73
-	public function setUnitCode($unitCode)
74
-	{
75
-	    $this->_unitCode = $unitCode;
73
+    public function setUnitCode($unitCode)
74
+    {
75
+        $this->_unitCode = $unitCode;
76 76
 	    
77
-	    return $this;
78
-	}
77
+        return $this;
78
+    }
79 79
 	
80
-	public function getUnitCode()
81
-	{
82
-	    return $this->_unitCode;
83
-	}
80
+    public function getUnitCode()
81
+    {
82
+        return $this->_unitCode;
83
+    }
84 84
 	
85
-	private $_unitText;
85
+    private $_unitText;
86 86
 	
87
-	public function setUnitText($uniText)
88
-	{
89
-	    $this->_unitText = $uniText;
87
+    public function setUnitText($uniText)
88
+    {
89
+        $this->_unitText = $uniText;
90 90
 	    
91
-	    return $this;
92
-	}
91
+        return $this;
92
+    }
93 93
 	
94
-	public function getUnitText()
95
-	{
96
-	    return $this->_unitText;
97
-	}
94
+    public function getUnitText()
95
+    {
96
+        return $this->_unitText;
97
+    }
98 98
 	
99
-	private $_value;
99
+    private $_value;
100 100
 	
101
-	public function setValue($value)
102
-	{
103
-	    $this->_value = $value;
101
+    public function setValue($value)
102
+    {
103
+        $this->_value = $value;
104 104
 	    
105
-	    return $this;
106
-	}
105
+        return $this;
106
+    }
107 107
 	
108
-	public function getValue()
109
-	{
110
-	   return $this->_value;   
111
-	}
108
+    public function getValue()
109
+    {
110
+        return $this->_value;   
111
+    }
112 112
 }
113 113
\ No newline at end of file
Please login to merge, or discard this patch.