我刚刚在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
有什么办法解决这个问题吗?
1条答案
按热度按时间agxfikkp1#
偶然发现了crane extension for VS Code