akalongman / akalongman/sublimetext-codeformatter
?? operator transform to ? ? how it fix?
Ouverte
- Langage dominant
- Python
- Étoiles
- 772
- Forks
- 128
- Métriques de merge des PR
- Aucune PR mergée en 30 j
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;
Guide de contribution
Ouvrir le guide de contribution
Évaluation
Cette issue n'a pas encore été évaluée.