notfalsedev / laravel-soap

A soap client wrapper for Laravel
MIT License
634 stars 122 forks source link

Namespace mentioned to create alias for laravel 5.2 was incorrect #160

Open kashifchishti82 opened 5 years ago

kashifchishti82 commented 5 years ago

To use the alias, add this to the aliases in app/config/app.php.

'SoapWrapper' => Artisaninweb\SoapWrapper\Facade\SoapWrapper::class,

The above line have incorrect nampespace it soapWrapper is under Artisaninweb\SoapWrapper\SoapWrapper::class,

tmas commented 3 years ago

This is supposed to reference the facade, so I believe the correct path would be 'SoapWrapper' => Artisaninweb\SoapWrapper\Facade::class,