没有对象的智能感知

时间:2016-06-24 11:10:15

标签: php visual-studio-code linuxmint

我刚刚在Linux Mint 17.3操作系统上安装了Visual Studio Code IDE 1.2.1版。

我在PHP中有一个苗条的应用程序,想看看IDE是否会在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

有没有解决这个问题?

1 个答案:

答案 0 :(得分:1)