for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace App\Example;
use App\Facades\View;
/**
* Test Controller
*
* @package App
* @author Rougin Royce Gutib <[email protected]>
*/
class TestController
{
* Greets you with a "lorem ipsum" text.
* @return string
public function greet()
return View::render('fixture.test');
App\Facades\View::render()
If this is a false-positive, you can also ignore this issue in your code via the ignore-call annotation
ignore-call
return View::/** @scrutinizer ignore-call */ render('fixture.test');
}