Skip to content
This repository has been archived by the owner on Jul 28, 2022. It is now read-only.

Commit

Permalink
1.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
soullivaneuh committed Apr 19, 2017
1 parent 8c9d5b5 commit ccf7ecb
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
3 changes: 3 additions & 0 deletions UPGRADE-1.x.md
@@ -1,6 +1,9 @@
UPGRADE 1.x
===========

UPGRADE FROM 1.0 to 1.1
=======================

### Closed API

Extending any class defined in this library is now deprecated
Expand Down
2 changes: 1 addition & 1 deletion src/FixedBitNotation.php
Expand Up @@ -72,7 +72,7 @@ public function __construct($bitsPerCharacter, $chars = null, $rightPadFinalBits
- and properties private */
if (__CLASS__ !== get_class($this)) {
@trigger_error(
'Extending '.__CLASS__.' is deprecated since 1.x, and will not be possible in 2.0. ',
'Extending '.__CLASS__.' is deprecated since 1.1, and will not be possible in 2.0. ',
E_USER_DEPRECATED
);
}
Expand Down
2 changes: 1 addition & 1 deletion src/GoogleAuthenticator.php
Expand Up @@ -59,7 +59,7 @@ public function __construct($passCodeLength = 6, $secretLength = 10)
- and protected properties and methods private */
if (__CLASS__ !== get_class($this)) {
@trigger_error(
'Extending '.__CLASS__.' is deprecated since 1.x, and will not be possible in 2.0. ',
'Extending '.__CLASS__.' is deprecated since 1.1, and will not be possible in 2.0. ',
E_USER_DEPRECATED
);
}
Expand Down

0 comments on commit ccf7ecb

Please sign in to comment.