phpcs - Fix error, "Visibility must be declared on method"
[civicrm-core.git] / tests / phpunit / WebTest / Import / ContactSubtypeTest.php
index 6546912da1198d632ac66dc3fd4173a3c7a437f6..464482d17ad0c34df798c060902e34c146ec0691 100644 (file)
@@ -38,7 +38,7 @@ class WebTest_Import_ContactSubtypeTest extends ImportCiviSeleniumTestCase {
   /*
    *  Test contact import for Individuals Subtype.
    */
-  function testIndividualSubtypeImport() {
+  public function testIndividualSubtypeImport() {
     $this->webtestLogin();
 
     // Get sample import data.
@@ -120,7 +120,7 @@ class WebTest_Import_ContactSubtypeTest extends ImportCiviSeleniumTestCase {
   /*
    *  Test contact import for Organization Subtype.
    */
-  function testOrganizationSubtypeImport() {
+  public function testOrganizationSubtypeImport() {
     $this->webtestLogin();
 
     // Get sample import data.
@@ -196,7 +196,7 @@ class WebTest_Import_ContactSubtypeTest extends ImportCiviSeleniumTestCase {
   /*
    *  Test contact import for Household Subtype.
    */
-  function testHouseholdSubtypeImport() {
+  public function testHouseholdSubtypeImport() {
     $this->webtestLogin();
 
     // Create Household Subtype
@@ -278,7 +278,7 @@ class WebTest_Import_ContactSubtypeTest extends ImportCiviSeleniumTestCase {
   /**
    * @return string
    */
-  function _createHouseholdSubtype() {
+  public function _createHouseholdSubtype() {
 
     // Visit to create contact subtype
     $this->openCiviPage("admin/options/subtype", "action=add&reset=1");
@@ -298,7 +298,7 @@ class WebTest_Import_ContactSubtypeTest extends ImportCiviSeleniumTestCase {
   /**
    * @return array
    */
-  function _individualSubtypeCSVData() {
+  public function _individualSubtypeCSVData() {
     $headers = array(
       'first_name' => 'First Name',
       'middle_name' => 'Middle Name',
@@ -346,7 +346,7 @@ class WebTest_Import_ContactSubtypeTest extends ImportCiviSeleniumTestCase {
   /**
    * @return array
    */
-  function _organizationSubtypeCSVData() {
+  public function _organizationSubtypeCSVData() {
     $headers = array(
       'organization_name' => 'Organization Name',
       'email' => 'Email',
@@ -388,7 +388,7 @@ class WebTest_Import_ContactSubtypeTest extends ImportCiviSeleniumTestCase {
   /**
    * @return array
    */
-  function _householdSubtypeCSVData() {
+  public function _householdSubtypeCSVData() {
     $headers = array(
       'household_name' => 'Household Name',
       'email' => 'Email',