What is Reflection?
Reflection will help us, define: Struct of class: Method, Properties, Const, Comment....
General reflection:
Ví dụ ta dùng get_class() và get_class_methods()
var_dump(get_class($user));
//App\Models\User
var_dump(get_class_method($user));
//Method A
//Method B
//Method C
//Something else