削除済みエンティティでもIDだけは取得する余地を残したい
Open
enhancement
- Dominant language
- PHP
- Stars
- 13
- Forks
- 26
- PR merge metrics
- No merged PRs in 30d
Description
Eccube.Entity.Order.dcm.yml
``` yaml
# 前略
customer_id:
type: integer
nullable: true
# 後略
```
Order.php
``` php
// 前略
protected $customer_id;
/**
* Get customer_id
*
* @return integer
*/
public function getCustomerId()
{
return $this->customer_id;
}
// 後略
```
Contributor guide
Assessment
This issue has not been assessed yet.