| 1 | <?php  | 
            ||
| 19 | class ValidatorDataObject  | 
            ||
| 20 | { | 
            ||
| 21 | /**  | 
            ||
| 22 | * @var FormObject  | 
            ||
| 23 | */  | 
            ||
| 24 | protected $formObject;  | 
            ||
| 25 | |||
| 26 | /**  | 
            ||
| 27 | * @var Validator  | 
            ||
| 28 | */  | 
            ||
| 29 | protected $validator;  | 
            ||
| 30 | |||
| 31 | /**  | 
            ||
| 32 | * @param FormObject $formObject  | 
            ||
| 33 | * @param Validator $validator  | 
            ||
| 34 | */  | 
            ||
| 35 | public function __construct(FormObject $formObject, Validator $validator)  | 
            ||
| 40 | |||
| 41 | /**  | 
            ||
| 42 | * @return FormObject  | 
            ||
| 43 | */  | 
            ||
| 44 | public function getFormObject()  | 
            ||
| 48 | |||
| 49 | /**  | 
            ||
| 50 | * @return Validator  | 
            ||
| 51 | */  | 
            ||
| 52 | public function getValidator()  | 
            ||
| 56 | }  | 
            ||
| 57 |