bryglen\apnsgcm\ApnsGcm::getGcmClient PHP Method

getGcmClient() public method

public getGcmClient ( ) : Gcm
return Gcm
    public function getGcmClient()
    {
        if ($this->_gcmClient === null) {
            $component = $this->gcm;
            $client = \Yii::$app->get($component);
            $this->_gcmClient = $client;
        }
        return $this->_gcmClient;
    }