Completed
Branch gettersetter (d9b5dd)
by Tim
01:59
created
src/SAML2/XML/md/RoleDescriptor.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -212,7 +212,7 @@  discard block
 block discarded – undo
212 212
 
213 213
     /**
214 214
      * Set the value of the Extensions-property
215
-     * @param array $extensions
215
+     * @param \SAML2\XML\Chunk[] $extensions
216 216
      */
217 217
     public function setExtensions(array $extensions)
218 218
     {
@@ -270,7 +270,7 @@  discard block
 block discarded – undo
270 270
 
271 271
     /**
272 272
      * Set the value of the Organization-property
273
-     * @param \SAML2\XML\md\Organization $organization|null
273
+     * @param \SAML2\XML\md\Organization $organization
274 274
      */
275 275
     public function setOrganization(Organization $organization = null)
276 276
     {
Please login to merge, or discard this patch.
src/SAML2/XML/md/SSODescriptorType.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -99,7 +99,7 @@
 block discarded – undo
99 99
 
100 100
     /**
101 101
      * Add the value to the ArtifactResolutionService-property
102
-     * @param \SAML2\XML\md\IndexedEndpointType $artifactResolucationService
102
+     * @param \SAML2\XML\md\IndexedEndpointType $artifactResolutionService
103 103
      */
104 104
     public function addArtifactResolutionService(IndexedEndpointType $artifactResolutionService)
105 105
     {
Please login to merge, or discard this patch.
src/SAML2/XML/saml/Attribute.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -102,7 +102,7 @@  discard block
 block discarded – undo
102 102
 
103 103
     /**
104 104
      * Set the value of the NameFormat-property
105
-     * @param string|null $NameFormat
105
+     * @param string|null $nameFormat
106 106
      */
107 107
     public function setNameFormat($nameFormat = null)
108 108
     {
@@ -131,7 +131,7 @@  discard block
 block discarded – undo
131 131
 
132 132
     /**
133 133
      * Collect the value of the AttributeValue-property
134
-     * @return SAML2\XML\saml\AttributeValue[]
134
+     * @return AttributeValue[]
135 135
      */
136 136
     public function getAttributeValue()
137 137
     {
Please login to merge, or discard this patch.
src/SAML2/XML/md/EntitiesDescriptor.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -198,7 +198,7 @@
 block discarded – undo
198 198
 
199 199
     /**
200 200
      * Set the value of the Extensions-property
201
-     * @param array $extensions
201
+     * @param \SAML2\XML\Chunk[] $extensions
202 202
      */
203 203
     public function setExtensions(array $extensions)
204 204
     {
Please login to merge, or discard this patch.
src/SAML2/Assertion.php 1 patch
Doc Comments   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -730,7 +730,7 @@  discard block
 block discarded – undo
730 730
     /**
731 731
      * Set the issuer of this message.
732 732
      *
733
-     * @param string|\SAML2\XML\saml\Issuer $issuer The new issuer of this assertion.
733
+     * @param string $issuer The new issuer of this assertion.
734 734
      */
735 735
     public function setIssuer($issuer)
736 736
     {
@@ -777,7 +777,7 @@  discard block
 block discarded – undo
777 777
     /**
778 778
      * Check whether the NameId is encrypted.
779 779
      *
780
-     * @return true if the NameId is encrypted, false if not.
780
+     * @return boolean if the NameId is encrypted, false if not.
781 781
      */
782 782
     public function isNameIdEncrypted()
783 783
     {
@@ -1192,7 +1192,7 @@  discard block
 block discarded – undo
1192 1192
     /**
1193 1193
      * Set the authentication context declaration reference.
1194 1194
      *
1195
-     * @param string|\SAML2\XML\Chunk $authnContextDeclRef
1195
+     * @param string $authnContextDeclRef
1196 1196
      * @throws \Exception
1197 1197
      */
1198 1198
     public function setAuthnContextDeclRef($authnContextDeclRef)
@@ -1212,7 +1212,7 @@  discard block
 block discarded – undo
1212 1212
      *
1213 1213
      * The URI reference MAY directly resolve into an XML document containing the referenced declaration.
1214 1214
      *
1215
-     * @return string
1215
+     * @return Chunk
1216 1216
      */
1217 1217
     public function getAuthnContextDeclRef()
1218 1218
     {
@@ -1344,7 +1344,7 @@  discard block
 block discarded – undo
1344 1344
     /**
1345 1345
      * Retrieve the encryptedAttributes elements we have.
1346 1346
      *
1347
-     * @return array Array of \DOMElement elements.
1347
+     * @return \DOMElement[] Array of \DOMElement elements.
1348 1348
      */
1349 1349
     public function getEncryptedAttributes()
1350 1350
     {
@@ -1354,7 +1354,7 @@  discard block
 block discarded – undo
1354 1354
     /**
1355 1355
      * Set the encryptedAttributes elements
1356 1356
      *
1357
-     * @param array $encAttrs Array of \DOMElement elements.
1357
+     * @param \DOMElement[] $encAttrs Array of \DOMElement elements.
1358 1358
      */
1359 1359
     public function setEncryptedAttributes(array $encAttrs)
1360 1360
     {
Please login to merge, or discard this patch.