Skip to content
Snippets Groups Projects
Commit f694bb7e authored by Demian Katz's avatar Demian Katz
Browse files

Cleaned up comments.

parent 91ea2d81
No related merge requests found
...@@ -42,10 +42,33 @@ namespace VuFind\Recommend; ...@@ -42,10 +42,33 @@ namespace VuFind\Recommend;
*/ */
class SwitchType implements RecommendInterface class SwitchType implements RecommendInterface
{ {
protected $newHandler; // search handler to try /**
protected $newHandlerName; // on-screen description of handler * search handler to try
protected $active; // is this module active? *
protected $results; // results object * @var string
*/
protected $newHandler;
/**
* on-screen description of handler
*
* @var string
*/
protected $newHandlerName;
/**
* is this module active?
*
* @var bool
*/
protected $active;
/**
* results object
*
* @var \VuFind\Search\Base\Results
*/
protected $results;
/** /**
* setConfig * setConfig
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment