X-Git-Url: https://vcs.fsf.org/?a=blobdiff_plain;f=tests%2Fphpunit%2FCRM%2FCase%2FXMLProcessor%2FProcessTest.php;h=c83fcfa9769ec9608a797ff499175f28b1d4f540;hb=28a98d7edc47366395b3df5c668ca18bc1cae063;hp=def111e16a8fb2392914486c08dddce1325e6eaa;hpb=2c20f50e843b464ce6c93c264f2545cff3e3edea;p=civicrm-core.git diff --git a/tests/phpunit/CRM/Case/XMLProcessor/ProcessTest.php b/tests/phpunit/CRM/Case/XMLProcessor/ProcessTest.php index def111e16a..c83fcfa976 100644 --- a/tests/phpunit/CRM/Case/XMLProcessor/ProcessTest.php +++ b/tests/phpunit/CRM/Case/XMLProcessor/ProcessTest.php @@ -7,7 +7,7 @@ require_once 'CiviTest/CiviCaseTestCase.php'; */ class CRM_Case_XMLProcessor_ProcessTest extends CiviCaseTestCase { - public function setUp() { + public function setUp(): void { parent::setUp(); $this->defaultAssigneeOptionsValues = []; @@ -21,7 +21,7 @@ class CRM_Case_XMLProcessor_ProcessTest extends CiviCaseTestCase { $this->process = new CRM_Case_XMLProcessor_Process(); } - public function tearDown() { + public function tearDown(): void { $this->deleteMoreRelationshipTypes(); parent::tearDown(); @@ -407,8 +407,8 @@ class CRM_Case_XMLProcessor_ProcessTest extends CiviCaseTestCase { * unique for each entry in the dataprovider since want to test a given * relationship type against multiple xml strings. It's not a test * identifier, it's an array key to use to look up something. - * @param $xmlString string - * @param $expected array + * @param string $xmlString + * @param array $expected * @param $dontcare array We're re-using the data provider for two tests and * we don't care about those expected values. * @@ -431,10 +431,10 @@ class CRM_Case_XMLProcessor_ProcessTest extends CiviCaseTestCase { * unique for each entry in the dataprovider since want to test a given * relationship type against multiple xml strings. It's not a test * identifier, it's an array key to use to look up something. - * @param $xmlString string + * @param string $xmlString * @param $dontcare array We're re-using the data provider for two tests and * we don't care about those expected values. - * @param $expected array + * @param array $expected * * @dataProvider xmlCaseRoleDataProvider */