1
0
mirror of https://github.com/danog/tgseclib.git synced 2025-01-22 05:51:20 +01:00

Revert changes for abstract methods in Base class

This commit is contained in:
Clint Nelissen 2014-12-29 08:54:45 -08:00
parent f3565346fa
commit d4f04bcab1

View File

@ -1172,7 +1172,7 @@ class Base
*/
function _encryptBlock($in)
{
user_error(__METHOD__ . '() must extend by class ' . __CLASS__, E_USER_ERROR);
user_error(__METHOD__ . '() must extend by class ' . get_class($this), E_USER_ERROR);
}
/**
@ -1186,7 +1186,7 @@ class Base
*/
function _decryptBlock($in)
{
user_error(__METHOD__ . '() must extend by class ' . __CLASS__, E_USER_ERROR);
user_error(__METHOD__ . '() must extend by class ' . get_class($this), E_USER_ERROR);
}
/**
@ -1201,7 +1201,7 @@ class Base
*/
function _setupKey()
{
user_error(__METHOD__ . '() must extend by class ' . __CLASS__, E_USER_ERROR);
user_error(__METHOD__ . '() must extend by class ' . get_class($this), E_USER_ERROR);
}
/**