php 对物体没有感知能力

jhkqcmku  于 2023-01-24  发布在  PHP
关注(0)|答案(1)|浏览(110)

我刚刚在Linux Mint 17.3操作系统上安装了Visual Studio代码IDE版本1.2.1。
我有一个PHP的slim应用程序,想看看IDE是否会显示slim对象下的各种属性和方法。不高兴的是,情况并非如此,slim对象没有智能感。以下是代码片段:

use \Psr\Http\Message\ServerRequestInterface as Request;
use \Psr\Http\Message\ResponseInterface as Response;
use \Algos\App\classes\PDO_connection;

//slim framework initialization
$app = new \Slim\App;

$container = $app-> //expected list of properties and methods here

有什么办法解决这个问题吗?

相关问题