Skip to content

Commit

Permalink
undeclared vars
Browse files Browse the repository at this point in the history
  • Loading branch information
demeritcowboy committed Jun 10, 2024
1 parent 6d27893 commit 208ab4f
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 0 deletions.
5 changes: 5 additions & 0 deletions tests/src/FunctionalJavascript/GrantTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,11 @@
*/
final class GrantTest extends WebformCivicrmTestBase {

/**
* @var int
*/
private $grant_type_id;

protected function setUp(): void {
parent::setUp();
$civicrm_version = $this->utils->wf_crm_apivalues('System', 'get')[0]['version'];
Expand Down
21 changes: 21 additions & 0 deletions tests/src/FunctionalJavascript/MultiCustomFieldsSubmissionTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,27 @@
*/
final class MultiCustomFieldsSubmissionTest extends WebformCivicrmTestBase {

/**
* @var int
*/
private $_totalMV;

/**
* @var array
*/
private $_customFields;

/**
* @var int
*/
private $_cgID;

/**
* @var array
*/
private $_contact1;
private $_contact2;

private function createMultiValueCustomFields() {
$this->_customFields = [];
$params = [
Expand Down

0 comments on commit 208ab4f

Please sign in to comment.