getRouter(); $node = $router->addRoute($this->uri, [$class, $method], $this->method); if ($node !== null) { $attribute = Snowflake::getDi()->getMethodAttribute($class::class, $method); foreach ($attribute as $item) { if ($item instanceof Route) { continue; } $item->execute($class, $method); } } return $router; } }