Conditions | 3 |
Paths | 4 |
Total Lines | 7 |
Code Lines | 4 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
33 | public function addFlow(FlowInterface $flow) |
||
34 | { |
||
35 | foreach ($flow->getResponseTypes() as $responseType) { |
||
36 | $this->responseTypeManager->addResponseType($responseType, $flow); |
||
37 | } |
||
38 | foreach ($flow->getGrantTypes() as $grantType) { |
||
39 | $this->grantTypeManager->addGrantType($grantType, $flow); |
||
40 | } |
||
42 | } |