akalongman / akalongman/sublimetext-codeformatter
?? operator transform to ? ? how it fix?
Open
- Dominant language
- Python
- Stars
- 772
- Forks
- 128
- PR merge metrics
- No merged PRs in 30d
Description
$row["productID"] = $productID ? ? null;
$row["min_order_amount"] = $Product["min_order_amount"] ? ? 1;
$row["real_instock"] = $Product["myInStock"]["qnt"] ? ? 1;
------------------
$row["productID"] = $productID ?? null;
$row["min_order_amount"] = $Product["min_order_amount"] ?? 1;
$row["real_instock"] = $Product["myInStock"]["qnt"] ?? 1;
Contributor guide
Assessment
This issue has not been assessed yet.