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