/var/www/cobraambalaj/vendor/laravel/framework/src/Illuminate/Support
NameSizeModeActions
Facades/-0755rm
Testing/-0755rm
Traits/-0755rm
AggregateServiceProvider.php9950644editdlrm
Carbon.php3560644editdlrm
composer.json16560644editdlrm
Composer.php23900644editdlrm
ConfigurationUrlParser.php43900644editdlrm
DateFactory.php80230644editdlrm
Env.php24790644editdlrm
Fluent.php38790755editdlrm
helpers.php91190755editdlrm
HigherOrderTapProxy.php6650644editdlrm
HtmlString.php10570644editdlrm
InteractsWithTime.php15880644editdlrm
LICENSE.md10750644editdlrm
Manager.php38510755editdlrm
MessageBag.php97500755editdlrm
NamespacedItemResolver.php32690755editdlrm
Optional.php26750644editdlrm
Pluralizer.php32780755editdlrm
ProcessUtils.php20500644editdlrm
Reflector.php26720644editdlrm
ServiceProvider.php108870755editdlrm
Str.php199430644editdlrm
Stringable.php177250644editdlrm
ViewErrorBag.php26220644editdlrm
Edit: /var/www/cobraambalaj/vendor/laravel/framework/src/Illuminate/Support/Reflector.php (2672B)
isPublic(); } if (is_object($var[0]) && method_exists($class, '__call')) { return (new ReflectionMethod($class, '__call'))->isPublic(); } if (! is_object($var[0]) && method_exists($class, '__callStatic')) { return (new ReflectionMethod($class, '__callStatic'))->isPublic(); } return false; } /** * Get the class name of the given parameter's type, if possible. * * @param \ReflectionParameter $parameter * @return string|null */ public static function getParameterClassName($parameter) { $type = $parameter->getType(); if (! $type instanceof ReflectionNamedType || $type->isBuiltin()) { return; } $name = $type->getName(); if (! is_null($class = $parameter->getDeclaringClass())) { if ($name === 'self') { return $class->getName(); } if ($name === 'parent' && $parent = $class->getParentClass()) { return $parent->getName(); } } return $name; } /** * Determine if the parameter's type is a subclass of the given type. * * @param \ReflectionParameter $parameter * @param string $className * @return bool */ public static function isParameterSubclassOf($parameter, $className) { $paramClassName = static::getParameterClassName($parameter); return ($paramClassName && class_exists($paramClassName)) ? (new ReflectionClass($paramClassName))->isSubclassOf($className) : false; } }