1 | <?php |
||
30 | final class Profile implements ProfileInterface |
||
31 | { |
||
32 | /** |
||
33 | * @var string |
||
34 | */ |
||
35 | private $name; |
||
36 | |||
37 | /** |
||
38 | * @var SourceInterface |
||
39 | */ |
||
40 | private $source; |
||
41 | |||
42 | /** |
||
43 | * @var ProcessorInterface |
||
44 | */ |
||
45 | private $processor; |
||
46 | |||
47 | /** |
||
48 | * @var NamerInterface |
||
49 | */ |
||
50 | private $namer; |
||
51 | |||
52 | /** |
||
53 | * @var RotatorInterface |
||
54 | */ |
||
55 | private $preRotator; |
||
56 | |||
57 | /** |
||
58 | * @var DestinationInterface |
||
59 | */ |
||
60 | private $destination; |
||
61 | |||
62 | /** |
||
63 | * @var RotatorInterface |
||
64 | */ |
||
65 | private $postRotator; |
||
66 | |||
67 | private $workflow; |
||
68 | |||
69 | 14 | public function __construct( |
|
88 | |||
89 | /** |
||
90 | * {@inheritdoc} |
||
91 | */ |
||
92 | 4 | public function getName() |
|
93 | { |
||
94 | 4 | return $this->name; |
|
95 | } |
||
96 | |||
97 | /** |
||
98 | * {@inheritdoc} |
||
99 | */ |
||
100 | 4 | public function getSource() |
|
104 | |||
105 | /** |
||
106 | * {@inheritdoc} |
||
107 | */ |
||
108 | 4 | public function getProcessor() |
|
109 | { |
||
110 | 4 | return $this->processor; |
|
111 | } |
||
112 | |||
113 | /** |
||
114 | * {@inheritdoc} |
||
115 | */ |
||
116 | 2 | public function getNamer() |
|
120 | |||
121 | /** |
||
122 | * {@inheritdoc} |
||
123 | */ |
||
124 | 4 | public function getPreRotator() |
|
125 | { |
||
126 | 4 | return $this->preRotator; |
|
127 | } |
||
128 | |||
129 | /** |
||
130 | * {@inheritdoc} |
||
131 | */ |
||
132 | 4 | public function getDestination() |
|
133 | { |
||
134 | 4 | return $this->destination; |
|
135 | } |
||
136 | |||
137 | /** |
||
138 | * {@inheritdoc} |
||
139 | */ |
||
140 | public function getPostRotator() |
||
144 | |||
145 | /** |
||
146 | * {@inheritdoc} |
||
147 | */ |
||
148 | public function getWorkflow() |
||
152 | } |
||
153 |