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