| Total Complexity | 3 |
| Total Lines | 28 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 21 | class Trello extends AbstractDriver |
||
| 22 | { |
||
| 23 | /** |
||
| 24 | * {@inheritdoc} |
||
| 25 | */ |
||
| 26 | protected function processShareData() |
||
| 30 | } |
||
| 31 | |||
| 32 | /** |
||
| 33 | * {@inheritdoc} |
||
| 34 | */ |
||
| 35 | protected function buildLink() |
||
| 36 | { |
||
| 37 | return 'https://trello.com/add-card' |
||
| 38 | . '?url={url}' |
||
| 39 | . '&name={title}' |
||
| 40 | ; |
||
| 41 | } |
||
| 42 | |||
| 43 | /** |
||
| 44 | * {@inheritdoc} |
||
| 45 | */ |
||
| 46 | protected function getMetaTags() |
||
| 49 | } |
||
| 50 | } |
||
| 51 |