yii\authclient\clients\LinkedIn::init PHP Méthode

init() public méthode

public init ( )
    public function init()
    {
        parent::init();
        if ($this->scope === null) {
            $this->scope = implode(' ', ['r_basicprofile', 'r_emailaddress']);
        }
    }

Usage Example

Exemple #1
0
 /**
  * @inheritdoc
  */
 public function init()
 {
     parent::init();
     if ($this->scope === null) {
         $this->scope = implode(' ', ['r_basicprofile', 'r_emailaddress']);
     }
 }
All Usage Examples Of yii\authclient\clients\LinkedIn::init