1 | <?php |
||
30 | class InstitutionAuthorization |
||
31 | { |
||
32 | /** |
||
33 | * @ORM\Id |
||
34 | * @ORM\Column(type="stepup_configuration_institution") |
||
35 | * |
||
36 | * @var Institution |
||
37 | */ |
||
38 | public $institution; |
||
39 | |||
40 | /** |
||
41 | * @ORM\Id |
||
42 | * @ORM\Column(type="stepup_configuration_institution") |
||
43 | * |
||
44 | * @var Institution |
||
45 | */ |
||
46 | public $institutionRelation; |
||
47 | |||
48 | /** |
||
49 | * @ORM\Id |
||
50 | * @ORM\Column(type="stepup_institution_role", length=10) |
||
51 | * |
||
52 | * @var InstitutionRole |
||
53 | */ |
||
54 | public $institutionRole; |
||
55 | |||
56 | /** |
||
57 | * @param Institution $institution |
||
58 | * @param Institution $institutionRelation |
||
59 | * @param InstitutionRole $institutionRole |
||
60 | * @return InstitutionAuthorization |
||
61 | */ |
||
62 | public static function create( |
||
75 | } |
||
76 |