-
Notifications
You must be signed in to change notification settings - Fork 0
/
ClassInfo.php
60 lines (52 loc) · 1.34 KB
/
ClassInfo.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
<?php
/**
* Qubus\Support
*
* @link https://github.com/QubusPHP/support
* @copyright 2022
* @author Joshua Parker <[email protected]>
* @license https://opensource.org/licenses/mit-license.php MIT License
*/
declare(strict_types=1);
namespace Qubus\Support;
use ReflectionClass;
use ReflectionException;
final class ClassInfo
{
/**
* ReflectionClass object.
*
* @throws ReflectionException
*/
public static function reflect(object|string $objectOrClass): ReflectionClass
{
return new ReflectionClass($objectOrClass);
}
/**
* Retrieve the class's name.
*
* @throws ReflectionException
*/
public static function short(object|string $objectOrClass): string
{
return self::reflect($objectOrClass)->getShortName();
}
/**
* Retrieve class's name its namespace name (i.e. Qubus\Support\ClassName).
*
* @throws ReflectionException
*/
public static function name(object|string $objectOrClass): string
{
return self::reflect($objectOrClass)->getName();
}
/**
* Retrieve the namespace name of a class.
*
* @throws ReflectionException
*/
public static function namespace(object|string $objectOrClass): string
{
return self::reflect($objectOrClass)->getNamespaceName();
}
}