| 1 | <?php |
||
| 12 | trait ReflectionTrait |
||
| 13 | { |
||
| 14 | /** |
||
| 15 | * Tries to get the correct class name from the given docBlock for Reflection |
||
| 16 | * |
||
| 17 | * @param string $comment the docblock |
||
| 18 | * @param bool $includeNamespaces |
||
| 19 | * @param null|\ReflectionClass $reflectionClass |
||
| 20 | * |
||
| 21 | * @return bool|string |
||
| 22 | */ |
||
| 23 | public static function getClassFromDocComment($comment, $includeNamespaces = true, $reflectionClass = null) |
||
| 37 | } |