Skip to content

Commit

Permalink
Fix undefined property
Browse files Browse the repository at this point in the history
  • Loading branch information
nanasess committed Jan 20, 2022
1 parent a9603a1 commit fb4cf20
Show file tree
Hide file tree
Showing 6 changed files with 18 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,9 @@ class LC_Page_Admin_Customer_Edit extends LC_Page_Admin_Ex
/** @var array */
public $arrSearchErr;

/** @var array */
public $arrPurchaseHistory;

/**
* Page を初期化する.
*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,10 @@
*/
class LC_Page_Admin_Customer_SearchCustomer extends LC_Page_Admin_Ex
{

/** @var array */
public $arrCustomer;

/**
* Page を初期化する.
*
Expand Down
3 changes: 3 additions & 0 deletions data/class/pages/admin/mail/LC_Page_Admin_Mail_History.php
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,9 @@
*/
class LC_Page_Admin_Mail_History extends LC_Page_Admin_Ex
{
/** @var array */
public $arrDataList;

/**
* Page を初期化する.
*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,9 @@ class LC_Page_Admin_Products_Product extends LC_Page_Admin_Products_Ex
/** @var int */
public $tpl_json_category_id;

/** @var array */
public $arrCatOut;

/**
* Page を初期化する.
*
Expand Down
2 changes: 2 additions & 0 deletions data/class/pages/admin/total/LC_Page_Admin_Total.php
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,8 @@ class LC_Page_Admin_Total extends LC_Page_Admin_Ex
public $tpl_graphsubtitle;
/** @var string */
public $tpl_titleimage;
/** @var string */
public $tpl_image;
/** @var array */
public $arrSearchForm1;
/** @var array */
Expand Down
3 changes: 3 additions & 0 deletions data/class/pages/rss/LC_Page_Rss_Products.php
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,9 @@ class LC_Page_Rss_Products extends LC_Page_Ex
public $encode;
/** @var string */
public $title;
/** @var array */
public $arrProduct;

/**
* Page を初期化する.
*
Expand Down

0 comments on commit fb4cf20

Please sign in to comment.