diff --git a/ext/search_kit/Civi/Api4/Action/SearchDisplay/AbstractRunAction.php b/ext/search_kit/Civi/Api4/Action/SearchDisplay/AbstractRunAction.php index faf18ec7865f..75269cefddfc 100644 --- a/ext/search_kit/Civi/Api4/Action/SearchDisplay/AbstractRunAction.php +++ b/ext/search_kit/Civi/Api4/Action/SearchDisplay/AbstractRunAction.php @@ -41,6 +41,14 @@ abstract class AbstractRunAction extends \Civi\Api4\Generic\AbstractAction { */ protected $filters = []; + /** + * Integer used as a seed when ordering by RAND(). + * This keeps the order stable enough to use a pager with random sorting. + * + * @var int + */ + protected $seed; + /** * Name of Afform, if this display is embedded (used for permissioning) * @var string diff --git a/ext/search_kit/Civi/Api4/Action/SearchDisplay/Run.php b/ext/search_kit/Civi/Api4/Action/SearchDisplay/Run.php index 4d09c7e81ebf..3ba06edbd3fb 100644 --- a/ext/search_kit/Civi/Api4/Action/SearchDisplay/Run.php +++ b/ext/search_kit/Civi/Api4/Action/SearchDisplay/Run.php @@ -22,14 +22,6 @@ class Run extends AbstractRunAction { */ protected $limit; - /** - * Integer used as a seed when ordering by RAND(). - * This keeps the order stable enough to use a pager with random sorting. - * - * @var int - */ - protected $seed; - /** * @param \Civi\Api4\Generic\Result $result * @throws \API_Exception