Skip to content

Commit

Permalink
Moved properties to proper class
Browse files Browse the repository at this point in the history
  • Loading branch information
LuomaJuha committed Dec 5, 2024
1 parent f18570f commit 389e207
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 14 deletions.
14 changes: 0 additions & 14 deletions module/Finna/src/Finna/ReservationList/AbstractBase.php
Original file line number Diff line number Diff line change
Expand Up @@ -50,20 +50,6 @@ class AbstractBase implements ConnectionInterface, \Laminas\Log\LoggerAwareInter
use \VuFind\Log\LoggerAwareTrait;
use GetServiceTrait;

/**
* Recipients for email handler defined in ReservationList.yaml
*
* @var array
*/
protected array $recipients;

/**
* Configured handler to handle form post, defaults to email handler
*
* @var string
*/
protected string $configuredHandler = 'email';

/**
* Constructor
*
Expand Down
14 changes: 14 additions & 0 deletions module/Finna/src/Finna/ReservationList/FeedbackForm.php
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,20 @@
*/
class FeedbackForm extends AbstractBase
{
/**
* Recipients for email handler defined in ReservationList.yaml
*
* @var array
*/
protected array $recipients;

/**
* Configured handler to handle form post, defaults to email handler
*
* @var string
*/
protected string $configuredHandler = 'email';

/**
* Places an order
*
Expand Down

0 comments on commit 389e207

Please sign in to comment.