Skip to content
This repository has been archived by the owner on Nov 4, 2024. It is now read-only.

Commit

Permalink
Merge pull request #12 from quique/php7.2
Browse files Browse the repository at this point in the history
Compatibility with PHP 7.2
  • Loading branch information
asasmoyo authored May 9, 2018
2 parents 9dc2df8 + 3f9e78c commit 9abde1c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"yiisoft/yii2": "*",
"yiisoft/yii2": ">=2.0.13",
"onelogin/php-saml": "~2.13.0"
},
"require-dev": {
Expand Down
4 changes: 2 additions & 2 deletions src/Saml.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,12 @@
namespace asasmoyo\yii2saml;

use Yii;
use yii\base\Object;
use yii\base\BaseObject;

/**
* This class wraps OneLogin_Saml2_Auth class by creating an instance of that class using configurations specified in configFileName variable inside @app/config folder.
*/
class Saml extends Object
class Saml extends BaseObject
{

/**
Expand Down

0 comments on commit 9abde1c

Please sign in to comment.