CRM-12595 fix formatting in tests files
[civicrm-core.git] / tests / phpunit / api / v3 / dataset / resolver / api / v3 / Contact / ExampleAction2.php
1 <?php
2
3 function civicrm_api3_contact_example_action2($params) {
4 return civicrm_api3_create_success(
5 array('0' => 'civicrm_api3_contact_example_action2 is ok'),
6 $params,
7 'contact',
8 'example_action2'
9 );
10 }
11