Completed
Branch gettersetter (44c408)
by Tim
01:48
created
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.