public $submitOnce = TRUE;
+ /**
+ * @var array
+ */
+ public $_groupTree;
+
+ public $_entityTagValues;
+
/**
* Explicitly declare the entity api name.
*
*/
class CRM_Activity_Import_Parser_Activity extends CRM_Import_Parser {
+ protected $_newActivity;
+
/**
* Get information about the provided job.
* - name
*/
protected $_isRedact;
+ /**
+ * Redaction Rules.
+ *
+ * @var array
+ */
+ protected $_redactionStringRules = [];
+
/**
*/
public function __construct() {
*/
protected $suppressedEmails = [];
+ public $_contactDetails = [];
+
+ public $_entityTagValues;
+
+ public $_caseId;
+
+ public $_context;
+
/**
* Getter for isSearchContext.
*
*
* @var string
*/
- protected $_permission;
+ public $_permission;
/**
* Heart of the viewing process.
*/
class CRM_Core_CodeGen_Schema extends CRM_Core_CodeGen_BaseTask {
+ public $locales;
+
/**
* CRM_Core_CodeGen_Schema constructor.
*
protected $classNames;
+ public $buildVersion;
+
/**
* Read and parse.
*
*/
protected $searchFieldMetadata = ['Contact' => []];
+ protected $_reset;
+
/**
* @return array
*/
'beginHookFormElements',
];
+ /**
+ * The permission we have on this contact
+ *
+ * @var string
+ */
+ public $_permission;
+
/**
* Class constructor.
*
*/
protected $_dynamicAction = FALSE;
+ protected $_case;
+
/**
* Class constructor.
*
*/
protected $guzzleClient;
+ /**
+ * @var string
+ */
+ public $repoUrl;
+
+ /**
+ * @var string
+ */
+ public $indexPath;
+
+ /**
+ * @var array
+ */
+ protected $_remotesDiscovered;
+
/**
* @return \GuzzleHttp\Client
*/
*/
public $typeInfo;
+ /**
+ * @var string
+ */
+ public $url;
+
+ /**
+ * @var string
+ */
+ public $category;
+
/**
* Load extension info an XML file.
*
*/
private $cache = [];
+ public $errorScope;
+
/**
* @var \CRM_Core_Transaction|null
*/
*/
public $scope;
+ public $comment;
+
/**
* @return bool
*/
private $providers = [];
+ protected $ids = [];
+
public function setUpHeadless() {
// Civi\Test has many helpers, like install(), uninstall(), sql(), and sqlFile().
// See: https://docs.civicrm.org/dev/en/latest/testing/phpunit/#civitest
private $hookEvents;
+ protected $ids = [];
+
public function setUpHeadless(): \Civi\Test\CiviEnvBuilder {
// Civi\Test has many helpers, like install(), uninstall(), sql(), and sqlFile().
// See: https://docs.civicrm.org/dev/en/latest/testing/phpunit/#civitest
*/
class CRM_ACL_ListTest extends CiviUnitTestCase {
+ /**
+ * @var array
+ */
+ protected $allowedContactsACL = [];
+
/**
* Set up function.
*/
private $someContacts = [];
+ protected $allowedContacts = [];
+
/**
* Set up for test.
*
*/
class CRM_Activity_Form_ActivityTest extends CiviUnitTestCase {
+ protected $assignee1;
+ protected $assignee2;
+ protected $target;
+ protected $source;
+
public function setUp():void {
parent::setUp();
$this->assignee1 = $this->individualCreate([
*/
class CRM_Activity_Form_SearchTest extends CiviUnitTestCase {
+ /**
+ * @var int
+ */
+ protected $individualID;
+
public function setUp(): void {
parent::setUp();
$this->individualID = $this->individualCreate();
protected $origSetting;
+ protected $mandates;
+
protected function setUp(): void {
$this->origSetting = $GLOBALS['civicrm_setting'];
protected $origSetting;
+ public $mandates;
+
protected function setUp(): void {
$this->origSetting = $GLOBALS['civicrm_setting'];
protected $_loggedInUser;
+ /**
+ * Tables to truncate as part of cleanup
+ * @var array
+ */
+ protected $tablesToTruncate;
+
public function setUp(): void {
parent::setUp();
*/
protected $_outBound_option = NULL;
+ /**
+ * @var CiviUnitTestCase
+ */
+ protected $_ut;
+
/**
* Constructor.
*
protected $sentMessage;
protected $_id = 0;
static private $_singleton = [];
+ protected $provider;
public function __construct($provider, $skipAuth = TRUE) {
$this->provider = $provider;