Completed
Pull Request — master (#37)
by Andreas
01:34
created

Command   A

Complexity

Total Complexity 4

Size/Duplication

Total Lines 26
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 4

Importance

Changes 0
Metric Value
wmc 4
lcom 0
cbo 4
dl 0
loc 26
rs 10
c 0
b 0
f 0

4 Methods

Rating   Name   Duplication   Size   Complexity  
A getParser() 0 6 1
A getParserName() 0 4 1
A getParserId() 0 4 1
A getServiceUrl() 0 4 1
1
<?php
2
3
declare(strict_types = 1);
4
5
/**
6
 * Copyright (c) 2015-2016 Andreas Heigl<[email protected]>
7
 *
8
 * Permission is hereby granted, free of charge, to any person obtaining a copy
9
 * of this software and associated documentation files (the "Software"), to deal
10
 * in the Software without restriction, including without limitation the rights
11
 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
12
 * copies of the Software, and to permit persons to whom the Software is
13
 * furnished to do so, subject to the following conditions:
14
 *
15
 * The above copyright notice and this permission notice shall be included in
16
 * all copies or substantial portions of the Software.
17
 *
18
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
19
 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
20
 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
21
 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
22
 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
23
 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
24
 * THE SOFTWARE.
25
 *
26
 * @author    Andreas Heigl<[email protected]>
27
 * @copyright 2015-2016 Andreas Heigl/callingallpapers.com
28
 * @license   http://www.opensource.org/licenses/mit-license.php MIT-License
29
 * @version   0.0
30
 * @since     01.12.2015
31
 * @link      http://github.com/heiglandreas/callingallpapers-cli
32
 */
33
namespace Callingallpapers\Subcommands\Sessionize;
34
35
use Callingallpapers\Command\AbstractParseEvents;
36
use Callingallpapers\Entity\Cfp;
37
use Callingallpapers\Parser\ParserInterface;
38
use Callingallpapers\Service\ServiceContainer;
39
use Callingallpapers\Subcommands\Sessionize\Parser\EntryParser;
40
use Callingallpapers\Subcommands\Sessionize\Parser\Sessionize;
41
use GuzzleHttp\Client;
42
43
class Command extends AbstractParseEvents
44
{
45
    const NAME = 'Sessionize';
46
47
    protected function getParser(ServiceContainer $serviceContainer): ParserInterface
48
    {
49
        $parser = new EntryParser(new Cfp(), $serviceContainer);
50
51
        return new Sessionize($parser);
52
    }
53
54
    protected function getParserName(): string
55
    {
56
        return self::NAME;
57
    }
58
59
    protected function getParserId() : string
60
    {
61
        return strtolower($this->getParserName());
62
    }
63
64
    protected function getServiceUrl() : string
65
    {
66
        return 'https://sessionize.com';
67
    }
68
}
69