You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Got this error on the 2.0 release: PHP Fatal error: Uncaught Error: Class 'AcquiaCloudApi\CloudApi\Connector' not found in /vendor/lcatlett/blt-drush-alias/src/Blt/Plugin/Commands/DrushAliasCommand.php:193
So at the very least, probably AcquiaCloudApi\CloudApi\Connector needs to be AcquiaCloudApi\Connector\Connector and AcquiaCloudApi\CloudApi\Client needs to be AcquiaCloudApi\Connector\Client. I haven't yet investigated further whether the class method calls need updating as well.
The text was updated successfully, but these errors were encountered:
As well as changes to the namespaces, there were changes to numbers of arguments required in arguments, etc. I wonder if it might be better to specify a specific version of the typhonius/acquia-php-sdk-v2 in the composer.json file, instead?
Got this error on the 2.0 release:
PHP Fatal error: Uncaught Error: Class 'AcquiaCloudApi\CloudApi\Connector' not found in /vendor/lcatlett/blt-drush-alias/src/Blt/Plugin/Commands/DrushAliasCommand.php:193
Looks like the namespaces in typhonius/acquia-php-sdk-v2 were changed in this commit: typhonius/acquia-php-sdk-v2@2d6b412
So at the very least, probably
AcquiaCloudApi\CloudApi\Connector
needs to beAcquiaCloudApi\Connector\Connector
andAcquiaCloudApi\CloudApi\Client
needs to beAcquiaCloudApi\Connector\Client
. I haven't yet investigated further whether the class method calls need updating as well.The text was updated successfully, but these errors were encountered: