1 | <?php |
||
29 | final class Profile implements ProfileInterface |
||
30 | { |
||
31 | /** |
||
32 | * @var string |
||
33 | */ |
||
34 | private $name; |
||
35 | |||
36 | /** |
||
37 | * @var SourceInterface |
||
38 | */ |
||
39 | private $source; |
||
40 | |||
41 | /** |
||
42 | * @var ProcessorInterface |
||
43 | */ |
||
44 | private $processor; |
||
45 | |||
46 | /** |
||
47 | * @var NamerInterface |
||
48 | */ |
||
49 | private $namer; |
||
50 | |||
51 | /** |
||
52 | * @var RotatorInterface |
||
53 | */ |
||
54 | private $preRotator; |
||
55 | |||
56 | /** |
||
57 | * @var DestinationInterface |
||
58 | */ |
||
59 | private $destination; |
||
60 | |||
61 | /** |
||
62 | * @var RotatorInterface |
||
63 | */ |
||
64 | private $postRotator; |
||
65 | |||
66 | 28 | public function __construct( |
|
83 | |||
84 | /** |
||
85 | * {@inheritdoc} |
||
86 | */ |
||
87 | 14 | public function getName() |
|
91 | |||
92 | /** |
||
93 | * {@inheritdoc} |
||
94 | */ |
||
95 | 10 | public function getSource() |
|
99 | |||
100 | /** |
||
101 | * {@inheritdoc} |
||
102 | */ |
||
103 | 8 | public function getProcessor() |
|
107 | |||
108 | /** |
||
109 | * {@inheritdoc} |
||
110 | */ |
||
111 | 6 | public function getNamer() |
|
115 | |||
116 | /** |
||
117 | * {@inheritdoc} |
||
118 | */ |
||
119 | 8 | public function getPreRotator() |
|
123 | |||
124 | /** |
||
125 | * {@inheritdoc} |
||
126 | */ |
||
127 | 16 | public function getDestination() |
|
131 | |||
132 | /** |
||
133 | * {@inheritdoc} |
||
134 | */ |
||
135 | 8 | public function getPostRotator() |
|
139 | } |
||
140 |