https://github.com/blockchain/api-v1-client-php <== php files im working with.
When i do my first test with this new api i start off with the inits
<?PHP
// Include the autoload.php from its vendor directory
require 'vendor/autoload.php'
// Create the base Blockchain class instance
$Blockchain = new \Blockchain\Blockchain();
// Needed before calling $Blockchain->Wallet or $Blockchain->Create
$Blockchain->setServiceUrl('http://localhost:3000');
?>
But when i do this it says...
"Parse error: syntax error, unexpected '$Blockchain' (T_VARIABLE) in C:\xampp\htdocs\bitcoin\index.php on line 6"
Composer package was compiled correctly and in the root folder.