unexpected 'use' (T_USE) when trying to use composer
问题 So, I am trying to use the coinbase API. I'm attempting a simple test to see if I can make it work, but I'm getting various composer errors. Currently, I am getting unexpected t 'use' for this code: use Coinbase\Wallet\Client; use Coinbase\Wallet\Configuration; $apiKey = 'public'; $apiSecret = 'private'; $configuration = Configuration::apiKey($apiKey, $apiSecret); $client = Client::create($configuration); $spotPrice = $client->getSpotPrice(); echo $spotPrice; So, are my use statements in the