Skip to content

Commit

Permalink
Make private properties protected
Browse files Browse the repository at this point in the history
  • Loading branch information
Lorenzo Milesi committed Apr 24, 2022
1 parent 2863857 commit 71d4706
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/ExportMenu.php
Original file line number Diff line number Diff line change
Expand Up @@ -691,13 +691,13 @@ class ExportMenu extends GridView
/**
* @var string the data output format type. Defaults to `ExportMenu::FORMAT_EXCEL_X`.
*/
private $_exportType;
protected $_exportType;

/**
* @var boolean private flag that will use $_POST [[exportRequestParam]] setting if available or use the
* [[triggerDownload]] setting
*/
private $_triggerDownload;
protected $_triggerDownload;

/**
* Appends slash to path if it does not exist
Expand Down

0 comments on commit 71d4706

Please sign in to comment.