We could not synchronize checks via GitHub's checks API since Scrutinizer's GitHub App is not installed for this repository.
| Total Complexity | 8 | 
| Total Lines | 84 | 
| Duplicated Lines | 0 % | 
| Changes | 1 | ||
| Bugs | 0 | Features | 0 | 
| 1 | <?php  | 
            ||
| 15 | class Format extends \TYPO3\CMS\Extbase\DomainObject\AbstractValueObject  | 
            ||
| 16 | { | 
            ||
| 17 | /**  | 
            ||
| 18 | * @var string  | 
            ||
| 19 | */  | 
            ||
| 20 | protected $type;  | 
            ||
| 21 | |||
| 22 | /**  | 
            ||
| 23 | * @var string  | 
            ||
| 24 | */  | 
            ||
| 25 | protected $root;  | 
            ||
| 26 | |||
| 27 | /**  | 
            ||
| 28 | * @var string  | 
            ||
| 29 | */  | 
            ||
| 30 | protected $namespace;  | 
            ||
| 31 | |||
| 32 | /**  | 
            ||
| 33 | * @var string  | 
            ||
| 34 | */  | 
            ||
| 35 | protected $class;  | 
            ||
| 36 | |||
| 37 | /**  | 
            ||
| 38 | * @return string  | 
            ||
| 39 | */  | 
            ||
| 40 | public function getType(): string  | 
            ||
| 41 |     { | 
            ||
| 42 | return $this->type;  | 
            ||
| 43 | }  | 
            ||
| 44 | |||
| 45 | /**  | 
            ||
| 46 | * @param string $type  | 
            ||
| 47 | */  | 
            ||
| 48 | public function setType(string $type): void  | 
            ||
| 49 |     { | 
            ||
| 50 | $this->type = $type;  | 
            ||
| 51 | }  | 
            ||
| 52 | |||
| 53 | /**  | 
            ||
| 54 | * @return string  | 
            ||
| 55 | */  | 
            ||
| 56 | public function getRoot(): string  | 
            ||
| 57 |     { | 
            ||
| 58 | return $this->root;  | 
            ||
| 59 | }  | 
            ||
| 60 | |||
| 61 | /**  | 
            ||
| 62 | * @param string $root  | 
            ||
| 63 | */  | 
            ||
| 64 | public function setRoot(string $root): void  | 
            ||
| 65 |     { | 
            ||
| 66 | $this->root = $root;  | 
            ||
| 67 | }  | 
            ||
| 68 | |||
| 69 | /**  | 
            ||
| 70 | * @return string  | 
            ||
| 71 | */  | 
            ||
| 72 | public function getNamespace(): string  | 
            ||
| 73 |     { | 
            ||
| 74 | return $this->namespace;  | 
            ||
| 75 | }  | 
            ||
| 76 | |||
| 77 | /**  | 
            ||
| 78 | * @param string $namespace  | 
            ||
| 79 | */  | 
            ||
| 80 | public function setNamespace(string $namespace): void  | 
            ||
| 83 | }  | 
            ||
| 84 | |||
| 85 | /**  | 
            ||
| 86 | * @return string  | 
            ||
| 87 | */  | 
            ||
| 88 | public function getClass(): string  | 
            ||
| 89 |     { | 
            ||
| 90 | return $this->class;  | 
            ||
| 91 | }  | 
            ||
| 92 | |||
| 93 | /**  | 
            ||
| 94 | * @param string $class  | 
            ||
| 95 | */  | 
            ||
| 96 | public function setClass(string $class): void  | 
            ||
| 99 | }  | 
            ||
| 100 | |||
| 101 | }  | 
            ||
| 102 |