sublimetext-codeformatter icon indicating copy to clipboard operation
sublimetext-codeformatter copied to clipboard

?? operator transform to ? ? how it fix?

Open antaNTby opened this issue 2 years ago • 0 comments

    $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;

antaNTby avatar Jan 03 '23 07:01 antaNTby