/home/techb158/exp.abdallabala.com/vendor/illuminate/support
NameSizeModeActions
Facades/-0755rm
Testing/-0755rm
Traits/-0755rm
AggregateServiceProvider.php9950644editdlrm
Arr.php153630644editdlrm
Carbon.php1150644editdlrm
Collection.php529540644editdlrm
composer.json14870644editdlrm
Composer.php23900644editdlrm
ConfigurationUrlParser.php42540644editdlrm
DateFactory.php80010644editdlrm
Fluent.php38830644editdlrm
helpers.php322410644editdlrm
HigherOrderCollectionProxy.php14080644editdlrm
HigherOrderTapProxy.php6650644editdlrm
HtmlString.php6990644editdlrm
InteractsWithTime.php15880644editdlrm
LICENSE.md10750644editdlrm
Manager.php35670644editdlrm
MessageBag.php93840644editdlrm
NamespacedItemResolver.php32700644editdlrm
Optional.php26410644editdlrm
Pluralizer.php25220644editdlrm
ProcessUtils.php20500644editdlrm
ServiceProvider.php77380644editdlrm
Str.php252870644editdlrm
ViewErrorBag.php26220644editdlrm
Edit: /home/techb158/exp.abdallabala.com/vendor/illuminate/support/InteractsWithTime.php (1588B)
parseDateInterval($delay); return $delay instanceof DateTimeInterface ? max(0, $delay->getTimestamp() - $this->currentTime()) : (int) $delay; } /** * Get the "available at" UNIX timestamp. * * @param \DateTimeInterface|\DateInterval|int $delay * @return int */ protected function availableAt($delay = 0) { $delay = $this->parseDateInterval($delay); return $delay instanceof DateTimeInterface ? $delay->getTimestamp() : Carbon::now()->addRealSeconds($delay)->getTimestamp(); } /** * If the given value is an interval, convert it to a DateTime instance. * * @param \DateTimeInterface|\DateInterval|int $delay * @return \DateTimeInterface|int */ protected function parseDateInterval($delay) { if ($delay instanceof DateInterval) { $delay = Carbon::now()->add($delay); } return $delay; } /** * Get the current system time as a UNIX timestamp. * * @return int */ protected function currentTime() { return Carbon::now()->getTimestamp(); } }