akalongman / akalongman/sublimetext-codeformatter
?? operator transform to ? ? how it fix?
Đang mở
- Ngôn ngữ chính
- Python
- Star
- 772
- Fork
- 128
- Chỉ số merge pull request
- Không có pull request nào được merge trong 30 ngày
Mô tả
$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;
Hướng dẫn đóng góp
Đánh giá
Issue này chưa được đánh giá.