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