Passed
Push — issue/615 ( d1bb44 )
by Tomas Norre
14:36
created

QueueRow::setConfigurationKey()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
cc 1
eloc 1
c 1
b 0
f 0
nc 1
nop 1
dl 0
loc 3
rs 10
1
<?php
2
3
declare(strict_types=1);
4
5
namespace AOE\Crawler\Value;
6
7
/*
8
 * (c) 2021 AOE GmbH <[email protected]>
9
 *
10
 * This file is part of the TYPO3 Crawler Extension.
11
 *
12
 * It is free software; you can redistribute it and/or modify it under
13
 * the terms of the GNU General Public License, either version 2
14
 * of the License, or any later version.
15
 *
16
 * For the full copyright and license information, please read the
17
 * LICENSE.txt file that was distributed with this source code.
18
 *
19
 * The TYPO3 project - inspiring people to share!
20
 */
21
22
/**
23
 * @internal
24
 */
25
class QueueRow
26
{
27
    /** @var string */
28
    public $pageTitle = '';
29
30
    /** @var string */
31
    public $pageTitleHTML = '';
32
33
    /** @var string */
34
    public $message;
35
36
    /** @var string */
37
    public $configurationKey;
38
39
    /** @var string */
40
    public $parameterConfig;
41
42
    /** @var string */
43
    public $valuesExpanded;
44
45
    /** @var string */
46
    public $urls;
47
48
    /** @var array */
49
    public $options;
50
51
    /** @var string */
52
    public $parameters;
53
54
    public function __construct(string $title)
55
    {
56
        $this->pageTitle = $title;
57
    }
58
59
    public function setPageTitleHTML(string $pageTitleHTML): void
60
    {
61
        $this->pageTitleHTML = $pageTitleHTML;
62
    }
63
64
    public function setMessage(string $message): void
65
    {
66
        $this->message = $message;
67
    }
68
69
    public function setConfigurationKey(string $configurationKey): void
70
    {
71
        $this->configurationKey = $configurationKey;
72
    }
73
74
    public function setParameterConfig(string $parameterConfig): void
75
    {
76
        $this->parameterConfig = $parameterConfig;
77
    }
78
79
    public function setValuesExpanded(string $valuesExpanded): void
80
    {
81
        $this->valuesExpanded = $valuesExpanded;
82
    }
83
84
    public function setUrls(string $urls): void
85
    {
86
        $this->urls = $urls;
87
    }
88
89
    public function setOptions(array $options): void
90
    {
91
        $this->options = $options;
92
    }
93
94
    public function setParameters(string $parameters): void
95
    {
96
        $this->parameters = $parameters;
97
    }
98
}
99