PicoFeedFaviconFactory::build()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 3
rs 10
c 0
b 0
f 0
cc 1
eloc 2
nc 1
nop 0
1
<?php
2
/**
3
 * ownCloud - News
4
 *
5
 * This file is licensed under the Affero General Public License version 3 or
6
 * later. See the COPYING file.
7
 *
8
 * @author Alessandro Cosentino <[email protected]>
9
 * @author Bernhard Posselt <[email protected]>
10
 * @copyright Alessandro Cosentino 2012
11
 * @copyright Bernhard Posselt 2012, 2014
12
 */
13
14
15
namespace OCA\News\Utility;
16
17
use \PicoFeed\Config\Config;
18
use \PicoFeed\Reader\Favicon;
19
20
class PicoFeedFaviconFactory {
21
22
    private $config;
23
24
    public function __construct(Config $config) {
25
        $this->config = $config;
26
    }
27
28
29
    /**
30
     * Returns a new instance of an PicoFeed Http client
31
     * @return \PicoFeed\Favicon instance
32
     */
33
    public function build() {
34
        return new Favicon($this->config);
35
    }
36
37
38
}