1 | <?php |
||
20 | class CopyRegistrationDetailsCommand extends Command |
||
21 | { |
||
22 | |||
23 | |||
24 | /** |
||
25 | * @var \EE_Registration $target_registration |
||
26 | */ |
||
27 | private $target_registration; |
||
28 | |||
29 | |||
30 | /** |
||
31 | * @var \EE_Registration $registration_to_copy |
||
32 | */ |
||
33 | private $registration_to_copy; |
||
34 | |||
35 | |||
36 | |||
37 | /** |
||
38 | * CopyRegistrationDetailsCommand constructor. |
||
39 | * |
||
40 | * @param \EE_Registration $target_registration |
||
41 | * @param \EE_Registration $registration_to_copy |
||
42 | v |
||
43 | */ |
||
44 | public function __construct( |
||
51 | |||
52 | |||
53 | |||
54 | /** |
||
55 | * @return \EE_Registration |
||
56 | */ |
||
57 | public function targetRegistration() { |
||
60 | |||
61 | |||
62 | |||
63 | /** |
||
64 | * @return \EE_Registration |
||
65 | */ |
||
66 | public function registrationToCopy() { |
||
69 | |||
70 | |||
71 | |||
72 | } |
||
73 | // End of file CopyRegistrationDetailsCommand.php |
||
74 | // Location: /CopyRegistrationDetailsCommand.php |