Skip to content

Commit

Permalink
remove calls to unnecessary BaseSearchResultProvider constructor
Browse files Browse the repository at this point in the history
  • Loading branch information
DAcodedBEAT committed May 15, 2024
1 parent e987c69 commit 981fb25
Show file tree
Hide file tree
Showing 7 changed files with 0 additions and 7 deletions.
1 change: 0 additions & 1 deletion src/ChurchCRM/Search/AddressSearchResultProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ class AddressSearchResultProvider extends BaseSearchResultProvider
public function __construct()
{
$this->pluralNoun = 'Address';
parent::__construct();
}

public function getSearchResults(string $SearchQuery)
Expand Down
1 change: 0 additions & 1 deletion src/ChurchCRM/Search/CalendarEventSearchResultProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ class CalendarEventSearchResultProvider extends BaseSearchResultProvider
public function __construct()
{
$this->pluralNoun = 'Calendar Events';
parent::__construct();
}

public function getSearchResults(string $SearchQuery)
Expand Down
1 change: 0 additions & 1 deletion src/ChurchCRM/Search/FamilySearchResultProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@ class FamilySearchResultProvider extends BaseSearchResultProvider
public function __construct()
{
$this->pluralNoun = 'Families';
parent::__construct();
}

public function getSearchResults(string $SearchQuery)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@ class FinanceDepositSearchResultProvider extends BaseSearchResultProvider
public function __construct()
{
$this->pluralNoun = 'Deposits';
parent::__construct();
}

public function getSearchResults(string $SearchQuery)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@ class FinancePaymentSearchResultProvider extends BaseSearchResultProvider
public function __construct()
{
$this->pluralNoun = 'Payments';
parent::__construct();
}

public function getSearchResults(string $SearchQuery)
Expand Down
1 change: 0 additions & 1 deletion src/ChurchCRM/Search/GroupSearchResultProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ class GroupSearchResultProvider extends BaseSearchResultProvider
public function __construct()
{
$this->pluralNoun = 'Groups';
parent::__construct();
}

public function getSearchResults(string $SearchQuery)
Expand Down
1 change: 0 additions & 1 deletion src/ChurchCRM/Search/PersonSearchResultProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ class PersonSearchResultProvider extends BaseSearchResultProvider
public function __construct()
{
$this->pluralNoun = 'Persons';
parent::__construct();
}

public function getSearchResults(string $SearchQuery)
Expand Down

0 comments on commit 981fb25

Please sign in to comment.