| Total Complexity | 2 | 
| Total Lines | 29 | 
| Duplicated Lines | 0 % | 
| Coverage | 0% | 
| Changes | 1 | ||
| Bugs | 0 | Features | 0 | 
| 1 | <?php  | 
            ||
| 7 | trait IsBasicallyChecklistTrait  | 
            ||
| 8 | { | 
            ||
| 9 | /**  | 
            ||
| 10 | * @var ChecklistItemsInterface  | 
            ||
| 11 | */  | 
            ||
| 12 | protected $checklistItemProvider;  | 
            ||
| 13 | |||
| 14 | /**  | 
            ||
| 15 | * Get the value of checklistItemProvider  | 
            ||
| 16 | *  | 
            ||
| 17 | * @return ChecklistItemsInterface  | 
            ||
| 18 | */  | 
            ||
| 19 | public function getChecklistItemProvider(): ChecklistItemsInterface  | 
            ||
| 20 |     { | 
            ||
| 21 | return $this->checklistItemProvider;  | 
            ||
| 22 | }  | 
            ||
| 23 | |||
| 24 | /**  | 
            ||
| 25 | * Set the value of checklistItemProvider  | 
            ||
| 26 | *  | 
            ||
| 27 | * @param ChecklistItemsInterface $checklistItemProvider  | 
            ||
| 28 | *  | 
            ||
| 29 | * @return self  | 
            ||
| 30 | */  | 
            ||
| 31 | public function setChecklistItemProvider(ChecklistItemsInterface $checklistItemProvider)  | 
            ||
| 36 | }  | 
            ||
| 37 | }  | 
            ||
| 38 |