/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-689.phpt (1683B)
--FILE-- [ 'name' => 'N', 'address' => 'A', ], 'contact' => [ 'name' => 'wd', 'email' => 'ffesfewf2232313123212', 'password' => ' ', 'position' => 'wdwdwf', 'number' => '£"!@£;21#£:"!:£~!":£\'21;', ], ]; try { v::create() ->key( 'organization', v::create() ->key('name', v::length(2, 50)->notEmpty()) ->key('address', v::length(2, 50)->notEmpty()) ) ->keyNested('contact.name', v::length(1, 50)->notEmpty()) ->keyNested('contact.email', v::email()->notEmpty()) ->keyNested('contact.password', v::length(3, 100)->notEmpty()) ->keyNested('contact.position', v::length(1, 100)->notEmpty()) ->keyNested('contact.number', v::phone()->notEmpty()) ->assert($input); } catch (NestedValidationException $exception) { print_r(array_filter($exception->findMessages([ 'organization.name' => 'Center name', 'organization.address' => 'Center address', 'contact.name' => 'Contact name', 'contact.password' => 'Contact name', 'contact.position' => 'Contact name', 'contact.number' => 'Contact name', 'contact.email' => 'Contact name', ]))); } ?> --EXPECTF-- Array ( [organization_name] => Center name [organization_address] => Center address [contact_password] => Contact name [contact_number] => Contact name [contact_email] => Contact name )