Skip to content

Commit dc3a1aa

Browse files
authored
Fix markdown
1 parent 996a126 commit dc3a1aa

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

UPGRADING.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -25,20 +25,20 @@ change, see: [e6c01fa](https://github.com/simplesamlphp/saml2/commit/e6c01fa9b0e
2525
In pre 4.0 releases we allowed both objects and arrays to be used for Issuers and nameID's. We know only support objects.
2626
If in your code you use something like this:
2727

28-
``
28+
```php
2929
$assertion = new \SAML2\Assertion();
3030
$assertion->setIssuer('someissuer');
31-
``
31+
```
3232

3333
You would now replace that with:
3434

35-
``
35+
```php
3636
$issuer = new \SAML2\XML\saml\Issuer();
3737
$issuer->setValue('someissuer');
3838

3939
$assertion = new \SAML2\Assertion();
4040
$assertion->setIssuer($issuer);
41-
``
41+
```
4242

4343
**Class properties**
4444
All public properies have been replaced by either protected or private properties.

0 commit comments

Comments
 (0)