我正在 Laravel 5 中开发一个应用程序,我有一个扩展自 的测试文件TestCase.php
,我需要phpcs
在我的文件中调用该命令
class MyTest extends TestCase {
public function testFunction()
{
//here I need to call the phpcs command
}
}
在这里的示例http://laravel.com/docs/5.0/testing我刚刚找到了这个this->call
函数,我认为这对我来说不是正确的选择,因为它正在返回一个response
对象,正确的方法是什么它?我应该使用哪个类和函数在此类中运行命令行我还需要将命令的结果保存在变量中