/home/techb158/exp.abdallabala.com/vendor/respect/validation/tests/integration
NameSizeModeActions
readme/-0755rm
rules/-0755rm
assert-with-keys.phpt15870644editdlrm
bsn_1.phpt1330644editdlrm
bsn_2.phpt2660644editdlrm
bsn_3.phpt2640644editdlrm
do_not_rely_on_nested_validation_exception_interface_for_check.phpt6680644editdlrm
exception_update.phpt4130644editdlrm
find_messages_should_apply_templates_to_flattened_messages.phpt17840644editdlrm
find_messages_should_return_composite_validation_messages_flattened.phpt16590644editdlrm
get_full_message_should_include_all_validation_messages_in_a_chain.phpt4780644editdlrm
get_messages_should_include_all_validation_messages_in_a_chain.phpt8850644editdlrm
issue-179.phpt6110644editdlrm
issue-425.phpt6170644editdlrm
issue-446.phpt4880644editdlrm
issue-619.phpt3460644editdlrm
issue-620.phpt8650644editdlrm
issue-689.phpt16830644editdlrm
issue-690.phpt15980644editdlrm
issue-719.phpt8370644editdlrm
issue-727.phpt11610644editdlrm
issue-739.phpt3310644editdlrm
issue-799.phpt10710644editdlrm
issue-805.phpt3950644editdlrm
issue-1033.phpt6300644editdlrm
issue_85_find_messages_should_not_trigger_catchable_fatal_error.phpt7640644editdlrm
keys_as_validator_names.phpt6840644editdlrm
not_should_work_by_builder.phpt2080644editdlrm
not_without_recursion.phpt4470644editdlrm
not_with_recursion.phpt6700644editdlrm
set_template_with_multiple_validators_should_use_template_as_full_message.phpt4610644editdlrm
set_template_with_multiple_validators_should_use_template_as_main_message.phpt4560644editdlrm
set_template_with_single_validator_should_use_template_as_main_message.phpt6440644editdlrm
should_not_overwrite_defined_names.phpt9120644editdlrm
translator-assert.phpt9240644editdlrm
translator-check.phpt5530644editdlrm
Edit: /home/techb158/exp.abdallabala.com/vendor/respect/validation/tests/integration/issue-727.phpt (1161B)
--FILE-- number = "+61.(03) 4546 5498"; $work->countryCode = 61; $work->primary = true; $personal = new stdClass(); $personal->number = "+61.0406 464 890"; $personal->country = 61; $personal->primary = false; $phoneNumbers = new stdClass(); $phoneNumbers->personal = $personal; $phoneNumbers->work = $work; $validateThis = ['phoneNumbers' => $phoneNumbers]; try { v::create() ->keyNested('phoneNumbers.personal.country', v::intType(), false) ->keyNested('phoneNumbers.personal.number', v::phone(), false) ->keyNested('phoneNumbers.personal.primary', v::boolType(), false) ->keyNested('phoneNumbers.work.country', v::intType(), false) ->keyNested('phoneNumbers.work.number', v::phone(), false) ->keyNested('phoneNumbers.work.primary', v::boolType(), false) ->check($validateThis); } catch (PhoneException $exception) { echo $exception->getMainMessage(); } ?> --EXPECTF-- phoneNumbers.personal.number must be a valid telephone number