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

PHPDoc 引数の型を修正 #976

Merged
merged 2 commits into from
Aug 17, 2024
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
2 changes: 1 addition & 1 deletion data/class/pages/admin/products/LC_Page_Admin_Products.php
Original file line number Diff line number Diff line change
Expand Up @@ -274,7 +274,7 @@ public function doDelete($where, $arrParam = array())
* @param string $where 構築する WHERE 句
* @param array $arrValues 構築するクエリパラメーター
* @param SC_FormParam $objFormParam SC_FormParam インスタンス
* @param SC_FormParam $objDb SC_Helper_DB_Ex インスタンス
* @param SC_Helper_DB_Ex $objDb SC_Helper_DB_Ex インスタンス
* @return void
*/
public function buildQuery($key, &$where, &$arrValues, &$objFormParam, &$objDb)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -811,7 +811,7 @@ public function lfSaveUploadFiles(&$objUpFile, &$objDownFile, $product_id)
* 戻り値: 同名ファイル有り(true) 同名ファイル無し(false)
*
* @param string $product_id 商品ID
* @param string $arrImageKey 対象としない画像カラム名
* @param array $arrImageKey 対象としない画像カラム名
* @param string $image_file_name 画像ファイル名
* @param SC_UploadFile_Ex $objUpFile SC_UploadFileインスタンス
* @return boolean
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -807,7 +807,7 @@ public function lfGetDbFormatTimeWithLine($line_no = '')
/**
* 指定されたキーと複数値の有効性の配列内確認
*
* @param string $arr チェック対象配列
* @param array $arr チェック対象配列
* @param string $keyname フォームキー名
* @param array $item 入力データ配列
* @param string $delimiter 分割文字
Expand Down Expand Up @@ -894,7 +894,7 @@ public function lfIsDbRecord($table, $keyname, $item)
/**
* 指定されたキーと値の有効性の配列内確認
*
* @param string $arr チェック対象配列
* @param array $arr チェック対象配列
* @param string $keyname キー名
* @param array $item 入力データ配列
* @return boolean true:有効なデータがある false:有効ではない
Expand Down
Loading