Skip to content

Commit

Permalink
Remove useless variable initialization.
Browse files Browse the repository at this point in the history
  • Loading branch information
EreMaijala committed Aug 14, 2023
1 parent e262b09 commit 7f32429
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions module/VuFind/src/VuFind/Search/Base/Options.php
Original file line number Diff line number Diff line change
Expand Up @@ -311,14 +311,14 @@ abstract class Options implements TranslatorAwareInterface
*
* @var bool
*/
protected $loadResultsWithJs = true;
protected $loadResultsWithJs;

/**
* Top pagination control style (none, simple or full)
*
* @var string
*/
protected $topPaginatorStyle = 'simple';
protected $topPaginatorStyle;

/**
* Constructor
Expand Down

0 comments on commit 7f32429

Please sign in to comment.