Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Macro on HttpClient does not return correct Return statement #1565

Open
barryvdh opened this issue Jun 26, 2024 · 0 comments
Open

Macro on HttpClient does not return correct Return statement #1565

barryvdh opened this issue Jun 26, 2024 · 0 comments
Labels

Comments

@barryvdh
Copy link
Owner

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 barryvdh added the bug label Jun 26, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

1 participant