Warning: session_start(): Session cannot be started after headers have already been sent in /home/tvrreohg/public_html/manga.php on line 13
leftSideTypes;
if (empty($types) && $analysis->leftSideValue !== null && \is_object($analysis->leftSideValue)) {
$types = [\get_class($analysis->leftSideValue)];
}
if (empty($types)) {
return [];
}
$properties = [];
foreach ($types as $type) {
try {
$reflection = new \ReflectionClass($type);
} catch (\ReflectionException $e) {
continue;
}
foreach (Docblock::getMagicProperties($reflection) as $property) {
$properties[] = $property->getName();
}
}
return \array_values(\array_unique($properties));
}
}