/**
  * @param StorageInterface $tokenStorage
  * @param StorageRegistryInterface $storageRegistry
  * @param string $baseUrl
  * @param string $capturePath
  * @param string $notifyPath
  */
 public function __construct(StorageInterface $tokenStorage, StorageRegistryInterface $storageRegistry, $baseUrl, $capturePath, $notifyPath)
 {
     parent::__construct($tokenStorage, $storageRegistry, $capturePath, $notifyPath);
     $this->baseUrl = $baseUrl;
 }
Example #2
0
 /**
  * @param UrlGeneratorInterface $urlGenerator
  * @param StorageInterface $tokenStorage
  * @param StorageRegistryInterface $storageRegistry
  * @param string $capturePath
  * @param string $notifyPath
  * @param string $autorizePath
  */
 public function __construct(UrlGeneratorInterface $urlGenerator, StorageInterface $tokenStorage, StorageRegistryInterface $storageRegistry, $capturePath, $notifyPath, $autorizePath)
 {
     $this->urlGenerator = $urlGenerator;
     parent::__construct($tokenStorage, $storageRegistry, $capturePath, $notifyPath, $autorizePath);
 }