我试图在我的PHP项目中使用Neoxygen。但我得到这个错误:
Class 'Neoxygen\NeoClient\ClientBuilder' not found in /var/www/html/work/api/vendor/myproj/myproj-core/src/MyProj/DatabaseTest/ManagersTest/AdminDbManagerTest.php.
我的代码:
<?php
namespace MyProj\DatabaseTest\ManagersTest;
use myProjCore\Tasks\AbstractClasses\ApiTask;
use Neoxygen\NeoClient\ClientBuilder;
class AdminDbManagerTest extends ApiTask
{
/**
* Start the running of the task
*/
public function start()
{
$this->testDB();
}
private function testDB()
{
$client = ClientBuilder::create()
->addConnection('default','http','localhost',7474)
->build();
}
}
我可以通过按ClientBuilder
(在testDB函数上)来到达课程所以我猜这个类可以识别ClientBuilder。
答案 0 :(得分:1)
问题解决了。我将文件推入我的Git并将它们拉回来,现在它可以工作了。我认为问题出在我做的作曲家更新中。