Completed
Push — master ( 26e13d...dce4fc )
by Oscar
10s
created

Viadeo::shareUrl()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 10
Code Lines 6

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 1
Metric Value
c 1
b 0
f 1
dl 0
loc 10
rs 9.4285
cc 1
eloc 6
nc 1
nop 0
1
<?php
2
3
namespace SocialLinks\Providers;
4
5
class Viadeo extends ProviderBase implements ProviderInterface
6
{
7
    /**
8
     * {@inheritdoc}
9
     */
10
    public function shareUrl()
11
    {
12
        return $this->buildUrl(
13
            'https://partners.viadeo.com/share',
14
            array(
15
                'url',
16
                'title' => 'comment',
17
            )
18
        );
19
    }
20
}
21