| Total Complexity | 2 |
| Total Lines | 23 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 19 | class Vkontakte extends DriverAbstract |
||
| 20 | { |
||
| 21 | /** |
||
| 22 | * @inheritdoc |
||
| 23 | */ |
||
| 24 | protected function processShareData() |
||
| 25 | { |
||
| 26 | $this->url = static::encodeData($this->url); |
||
| 27 | $this->title = static::encodeData($this->title); |
||
| 28 | $this->description = static::encodeData($this->description); |
||
| 29 | $this->imageUrl = static::encodeData($this->imageUrl); |
||
| 30 | } |
||
| 31 | |||
| 32 | /** |
||
| 33 | * @inheritdoc |
||
| 34 | */ |
||
| 35 | protected function buildLink() |
||
| 42 | } |
||
| 43 | } |
||
| 44 |