Happyr\LinkedIn\LinkedIn::getUrlGenerator PHP Method

getUrlGenerator() protected method

protected getUrlGenerator ( ) : Happyr\LinkedIn\Http\UrlGeneratorInterface
return Happyr\LinkedIn\Http\UrlGeneratorInterface
    protected function getUrlGenerator()
    {
        if ($this->urlGenerator === null) {
            $this->urlGenerator = new UrlGenerator();
        }
        return $this->urlGenerator;
    }

Usage Example

 public function getUrlGenerator()
 {
     return parent::getUrlGenerator();
 }