*/ trait RefreshAction { protected $refreshActionIds = []; public function getRefreshActionIds() { return $this->refreshActionIds; } public function addRefreshActionId($refreshActionId = null) { $this->refreshActionIds[] = $refreshActionId; return $this; } }