Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

未定義変数の修正 #514

Merged
merged 1 commit into from
Jan 26, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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