Failed to save the file to the "xx" directory.

Failed to save the file to the "ll" directory.

Failed to save the file to the "mm" directory.

Failed to save the file to the "wp" directory.

403WebShell
403Webshell
Server IP : 66.29.132.124  /  Your IP : 3.149.242.223
Web Server : LiteSpeed
System : Linux business141.web-hosting.com 4.18.0-553.lve.el8.x86_64 #1 SMP Mon May 27 15:27:34 UTC 2024 x86_64
User : wavevlvu ( 1524)
PHP Version : 7.4.33
Disable Function : NONE
MySQL : OFF  |  cURL : ON  |  WGET : ON  |  Perl : ON  |  Python : ON  |  Sudo : OFF  |  Pkexec : OFF
Directory :  /home/wavevlvu/./book24.ng/vendor/bavix/laravel-wallet/src/Interfaces/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : /home/wavevlvu/./book24.ng/vendor/bavix/laravel-wallet/src/Interfaces/Customer.php
<?php

namespace Bavix\Wallet\Interfaces;

use Bavix\Wallet\Models\Transfer;
use Bavix\Wallet\Objects\Cart;

interface Customer extends Wallet
{
    /**
     * @param Product $product
     * @param bool $force
     *
     * @return Transfer
     *
     * @throws
     */
    public function pay(Product $product, bool $force = null): Transfer;

    /**
     * @param Product $product
     * @param bool $force
     *
     * @return Transfer|null
     *
     * @throws
     */
    public function safePay(Product $product, bool $force = null): ?Transfer;

    /**
     * @param Product $product
     * @return Transfer
     *
     * @throws
     */
    public function forcePay(Product $product): Transfer;

    /**
     * @param Product $product
     * @param bool $gifts
     *
     * @return null|Transfer
     */
    public function paid(Product $product, bool $gifts = null): ?Transfer;

    /**
     * @param Product $product
     * @param bool $force
     * @param bool $gifts
     *
     * @return bool
     *
     * @throws
     */
    public function refund(Product $product, bool $force = null, bool $gifts = null): bool;

    /**
     * @param Product $product
     * @param bool $force
     * @param bool $gifts
     *
     * @return bool
     */
    public function safeRefund(Product $product, bool $force = null, bool $gifts = null): bool;

    /**
     * @param Product $product
     * @param bool $gifts
     *
     * @return bool
     */
    public function forceRefund(Product $product, bool $gifts = null): bool;

    /**
     * @param Cart $cart
     * @param bool $force
     *
     * @return Transfer[]
     *
     * @throws
     */
    public function payCart(Cart $cart, bool $force = null): array;

    /**
     * @param Cart $cart
     * @param bool $force
     *
     * @return Transfer[]
     *
     * @throws
     */
    public function safePayCart(Cart $cart, bool $force = null): array;

    /**
     * @param Cart $cart
     *
     * @return Transfer[]
     *
     * @throws
     */
    public function forcePayCart(Cart $cart): array;

    /**
     * @param Cart $cart
     * @param bool $force
     * @param bool $gifts
     *
     * @return bool
     *
     * @throws
     */
    public function refundCart(Cart $cart, bool $force = null, bool $gifts = null): bool;

    /**
     * @param Cart $cart
     * @param bool $force
     * @param bool $gifts
     *
     * @return bool
     */
    public function safeRefundCart(Cart $cart, bool $force = null, bool $gifts = null): bool;

    /**
     * @param Cart $cart
     * @param bool $gifts
     *
     * @return bool
     */
    public function forceRefundCart(Cart $cart, bool $gifts = null): bool;
}

Youez - 2016 - github.com/yon3zu
LinuXploit