Skip to content

Commit b4e557a

Browse files
committed
Fix codesniffer issues
1 parent 788f2b8 commit b4e557a

File tree

11 files changed

+94
-90
lines changed

11 files changed

+94
-90
lines changed

src/SAML2/Certificate/Key.php

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,10 @@
1414
class Key implements \ArrayAccess
1515
{
1616
// Possible key usages
17-
const USAGE_SIGNING = 'signing';
18-
const USAGE_ENCRYPTION = 'encryption';
17+
public const USAGE_SIGNING = 'signing';
18+
19+
public const USAGE_ENCRYPTION = 'encryption';
20+
1921

2022
/**
2123
* @var array

src/SAML2/Configuration/PrivateKey.php

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,10 @@
1212
*/
1313
class PrivateKey extends ArrayAdapter
1414
{
15-
const NAME_NEW = 'new';
16-
const NAME_DEFAULT = 'default';
15+
public const NAME_NEW = 'new';
16+
17+
public const NAME_DEFAULT = 'default';
18+
1719

1820
/**
1921
* @var string

0 commit comments

Comments
 (0)