summaryrefslogtreecommitdiffstats
path: root/Tests/Auth/OpenID/BigMath.php
diff options
context:
space:
mode:
authorOleksandr Zahorulia <Hast4656@gmail.com>2016-09-30 22:50:50 +0300
committerMarco Ceppi <marco@ceppi.net>2016-09-30 21:50:50 +0200
commitd8ef0dba1fa378fc22fe6d423f9423febb2d996d (patch)
tree125e225306ac315f85f6f950e6e1ac1e72f804d8 /Tests/Auth/OpenID/BigMath.php
parent924f9aa42453cd0f9dba72587b4e2cdf7f4de874 (diff)
downloadphp-openid-master.zip
php-openid-master.tar.gz
php-openid-master.tar.bz2
#130: PHP 7 compatibility (fixes #129)HEADorigin/masterorigin/HEADmaster
Diffstat (limited to 'Tests/Auth/OpenID/BigMath.php')
-rw-r--r--Tests/Auth/OpenID/BigMath.php12
1 files changed, 6 insertions, 6 deletions
diff --git a/Tests/Auth/OpenID/BigMath.php b/Tests/Auth/OpenID/BigMath.php
index acab4d9..40c627e 100644
--- a/Tests/Auth/OpenID/BigMath.php
+++ b/Tests/Auth/OpenID/BigMath.php
@@ -20,7 +20,7 @@ class Tests_Auth_OpenID_BinLongConvertRnd extends PHPUnit_Framework_TestCase {
var $lib;
var $max;
- function Tests_Auth_OpenID_BinLongConvertRnd($lib, $max)
+ function __construct($lib, $max)
{
$this->lib =& $lib;
$this->max = $max;
@@ -45,7 +45,7 @@ class Tests_Auth_OpenID_BinLongConvert extends PHPUnit_Framework_TestCase {
var $bin;
var $lng;
- function Tests_Auth_OpenID_BinLongConvert($lib, $bin, $lng)
+ function __construct($lib, $bin, $lng)
{
$this->lib =& $lib;
$this->bin = $bin;
@@ -66,7 +66,7 @@ class Tests_Auth_OpenID_Base64ToLong extends PHPUnit_Framework_TestCase {
var $b64;
var $lib;
- function Tests_Auth_OpenID_Base64ToLong($lib, $b64, $num)
+ function __construct($lib, $b64, $num)
{
$this->lib = $lib;
$this->b64 = $b64;
@@ -81,7 +81,7 @@ class Tests_Auth_OpenID_Base64ToLong extends PHPUnit_Framework_TestCase {
}
class Tests_Auth_OpenID_LongToBase64 extends Tests_Auth_OpenID_Base64ToLong {
- function Tests_Auth_OpenID_LongToBase64($lib, $b64, $num)
+ function __construct($lib, $b64, $num)
{
$this->lib = $lib;
$this->b64 = $b64;
@@ -96,7 +96,7 @@ class Tests_Auth_OpenID_LongToBase64 extends Tests_Auth_OpenID_Base64ToLong {
}
class Tests_Auth_OpenID_Rand extends PHPUnit_Framework_TestCase {
- function Tests_Auth_OpenID_Rand($lib)
+ function __construct($lib)
{
$this->lib =& $lib;
}
@@ -216,7 +216,7 @@ class Tests_Auth_OpenID_BigMath extends PHPUnit_Framework_TestSuite {
}
- function Tests_Auth_OpenID_BigMath($name)
+ function __construct($name)
{
$this->setName($name);