| Total Complexity | 1 |
| Total Lines | 19 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 18 | class Membership extends Data { |
||
| 19 | |||
| 20 | protected const MAP = [ |
||
| 21 | 'project' => Project::class, |
||
| 22 | 'section' => Section::class |
||
| 23 | ]; |
||
| 24 | |||
| 25 | /** |
||
| 26 | * @depends create-only |
||
| 27 | * |
||
| 28 | * @see Task::addToProject() |
||
| 29 | * |
||
| 30 | * @param Section $section |
||
| 31 | * @return $this |
||
| 32 | */ |
||
| 33 | final public function setSection (Section $section) { |
||
| 37 | } |
||
| 38 | } |