laravel-ide-helper icon indicating copy to clipboard operation
laravel-ide-helper copied to clipboard

Macro on HttpClient does not return correct Return statement

Open barryvdh opened this issue 2 months ago • 0 comments

Example:

        /**
         *
         *
         * @see \App\Providers\MagentoServiceProvider::register()
         * @static
         */        public static function magento()
        {
                        return \Illuminate\Http\Client\Factory::magento();
        }

Should be

        /**
         *
         *
         * @see \App\Providers\MagentoServiceProvider::register()
         * @static
         * @return \Illuminate\Http\Client\Factory
         */        public static function magento()
        {
                        return \Illuminate\Http\Client\Factory::magento();
        }

barryvdh avatar Jun 26 '24 09:06 barryvdh