/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/DateFactory.php (8001B)
$method(...$parameters); } $dateClass = static::$dateClass ?: $defaultClassName; // Check if date can be created using public class method... if (method_exists($dateClass, $method) || method_exists($dateClass, 'hasMacro') && $dateClass::hasMacro($method)) { return $dateClass::$method(...$parameters); } // If that fails, create the date with the default class.. $date = $defaultClassName::$method(...$parameters); // If the configured class has an "instance" method, we'll try to pass our date into there... if (method_exists($dateClass, 'instance')) { return $dateClass::instance($date); } // Otherwise, assume the configured class has a DateTime compatible constructor... return new $dateClass($date->format('Y-m-d H:i:s.u'), $date->getTimezone()); } }