whoami7 - Manager
:
/
home
/
kckglobal
/
www
/
portal
/
vendor
/
spatie
/
laravel-backup
/
src
/
Traits
/
Upload File:
files >> //home/kckglobal/www/portal/vendor/spatie/laravel-backup/src/Traits/Retryable.php
<?php namespace Spatie\Backup\Traits; use Illuminate\Support\Sleep; trait Retryable { protected int $tries = 1; protected int $currentTry = 1; protected function shouldRetry() { if ($this->tries <= 1) { return false; } return $this->currentTry < $this->tries; } protected function hasRetryDelay(string $type) { return ! empty($this->getRetryDelay($type)); } protected function sleepFor(int $seconds = 0) { Sleep::for($seconds)->seconds(); } protected function setTries(string $type) { if ($this->option('tries')) { $this->tries = (int) $this->option('tries'); return; } $this->tries = (int) config('backup.'.$type.'.tries', 1); } protected function getRetryDelay(string $type) { return (int) config('backup.'.$type.'.retry_delay', 0); } }
Copyright ©2021 || Defacer Indonesia