get( 'cart' ) ); } /** * Get the path of this REST route. * * @throws \Exception Throws exception because this method is not meant to be implemented in this utility class. */ public function get_path() { throw new \Exception( 'Not implemented' ); } /** * Get arguments for this REST route. * * @throws \Exception Throws exception because this method is not meant to be implemented in this utility class. */ public function get_args() { throw new \Exception( 'Not implemented' ); } //phpcs:disable Generic.CodeAnalysis.UselessOverridingMethod /** * This function is used to get the cart token from the cart route. * * @return string The cart token. */ public function get_cart_token() { return parent::get_cart_token(); } } }