Magento 2 Documentation  2.3
Documentation for Magento 2 CMS v2.3 (December 2018)
Public Member Functions
Link Class Reference
Inheritance diagram for Link:
LinkInterface

Public Member Functions

 __construct ($url, $initializationVector)
 
 getUrl ()
 
 getInitializationVector ()
 

Detailed Description

Represents link with collected data and initialized vector for decryption.

Definition at line 13 of file Link.php.

Constructor & Destructor Documentation

◆ __construct()

__construct (   $url,
  $initializationVector 
)
Parameters
string$url
string$initializationVector

Definition at line 29 of file Link.php.

30  {
31  $this->url = $url;
32  $this->initializationVector = $initializationVector;
33  }

Member Function Documentation

◆ getInitializationVector()

getInitializationVector ( )
Returns
string

Implements LinkInterface.

Definition at line 46 of file Link.php.

47  {
48  return $this->initializationVector;
49  }

◆ getUrl()

getUrl ( )
Returns
string

Implements LinkInterface.

Definition at line 38 of file Link.php.

39  {
40  return $this->url;
41  }

The documentation for this class was generated from the following file: