Gets the full inheritance list for the given class.
public static parents ( string $class, array $options = [] ) : array | ||
$class | string | Class whose inheritance chain will be returned |
$options | array | Option consists of: - `'autoLoad'` _boolean_: Whether or not to call `__autoload` by default. Defaults to `true`. |
return | array | An array of the name of the parent classes of the passed `$class` parameter, or `false` on error. |