| Total Complexity | 3 |
| Total Lines | 16 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 9 | final class ProcessReportConfiguration implements CommandInterface |
||
| 10 | { |
||
| 11 | /** @var mixed */ |
||
| 12 | private $reportConfigurationId; |
||
| 13 | |||
| 14 | /** |
||
| 15 | * @param ReportConfigurationInterface|mixed $reportConfiguration |
||
| 16 | */ |
||
| 17 | public function __construct($reportConfiguration) |
||
| 18 | { |
||
| 19 | $this->reportConfigurationId = $reportConfiguration instanceof ReportConfigurationInterface ? $reportConfiguration->getId() : $reportConfiguration; |
||
| 20 | } |
||
| 21 | |||
| 22 | public function getReportConfigurationId() |
||
| 25 | } |
||
| 26 | } |
||
| 27 |