@@ 71-78 (lines=8) @@ | ||
68 | /** |
|
69 | * @return RemoveInstitutionConfigurationByUnnormalizedIdCommand |
|
70 | */ |
|
71 | public function inferRemoveInstitutionConfigurationByIdCommand() |
|
72 | { |
|
73 | $command = new RemoveInstitutionConfigurationByUnnormalizedIdCommand(); |
|
74 | $command->UUID = (string) Uuid::uuid4(); |
|
75 | $command->institution = $this->institution->getInstitution(); |
|
76 | ||
77 | return $command; |
|
78 | } |
|
79 | ||
80 | /** |
|
81 | * @return CreateInstitutionConfigurationCommand |
|
@@ 83-90 (lines=8) @@ | ||
80 | /** |
|
81 | * @return CreateInstitutionConfigurationCommand |
|
82 | */ |
|
83 | public function inferCreateInstitutionConfigurationCommand() |
|
84 | { |
|
85 | $command = new CreateInstitutionConfigurationCommand(); |
|
86 | $command->UUID = Uuid::uuid4(); |
|
87 | $command->institution = $this->institution->getInstitution(); |
|
88 | ||
89 | return $command; |
|
90 | } |
|
91 | ||
92 | /** |
|
93 | * @return ReconfigureInstitutionConfigurationOptionsCommand |