関数
RedirectRouteGuards::cartNotEmptyOrExit()
Exits to home page if cart is empty
戻り値 戻り値
ファイル: src/Routing/RedirectRouteGuards.php
public function cartNotEmptyOrExit() { return function () { $cartCheck = $this->restRouteGuards->cartNotEmptyCheck(); if (!empty($cartCheck())) { header('location: ' . get_option('home')); exit(); } }; }