Code Duplication    Length = 17-17 lines in 2 locations

src/Providers/Bobrdobr.php 1 location

@@ 8-24 (lines=17) @@
5
/**
6
 * BobrDobr is a Russian clone of delicio.us.
7
 */
8
class Bobrdobr extends ProviderBase implements ProviderInterface
9
{
10
    /**
11
     * {@inheritdoc}
12
     */
13
    public function shareUrl()
14
    {
15
        return $this->buildUrl(
16
            'http://bobrdobr.ru/addext.html',
17
            array(
18
                'url',
19
                'title',
20
                'text' => 'desc',
21
            )
22
        );
23
    }
24
}
25

src/Providers/Evernote.php 1 location

@@ 8-24 (lines=17) @@
5
/**
6
 * Create an Evernote Clip of a page.
7
 */
8
class Evernote extends ProviderBase implements ProviderInterface
9
{
10
    /**
11
     * {@inheritdoc}
12
     */
13
    public function shareUrl()
14
    {
15
        return $this->buildUrl(
16
            'https://www.evernote.com/clip.action',
17
            array(
18
                'url',
19
                'title',
20
                'text' => 'body',
21
            )
22
        );
23
    }
24
}
25