diff --git a/src/Macroable.php b/src/Macroable.php index d491526..dfd3ebc 100644 --- a/src/Macroable.php +++ b/src/Macroable.php @@ -11,22 +11,11 @@ trait Macroable { protected static array $macros = []; - /** - * Register a custom macro. - * - * @param string $name - * @param object|callable $macro - */ public static function macro(string $name, object | callable $macro): void { static::$macros[$name] = $macro; } - /** - * Mix another object into the class. - * - * @param object|string $mixin - */ public static function mixin(object | string $mixin): void { $methods = (new ReflectionClass($mixin))->getMethods(