我目前正在使用 VVV,而且我也在使用 7.4(php 版本),所以这应该不是错误,但它仍然会在启动时出现。
任何提示或技巧将不胜感激。
<?php
namespace Roots\Sage\Example;
use Exception;
class Example
{
private const WSDL = 'https://vanderlay-industries.asmx?WSDL';
// creds
private const PASSWORD = 'abc';
private const CLIENTID = '132';
private CallClient $soap; // error ** PHP Parse error: syntax error, unexpected 'CallClient' (T_STRING), expecting function (T_FUNCTION) or const (T_CONST)
public function __construct() {
$this->soap = new CallClient();
}
...