for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Mezon\Application\Tests;
use Mezon\Application\Controller;
class TestingController extends Controller
Mezon\Application\Controller
If this is a false-positive, you can also ignore this issue in your code via the ignore-deprecated annotation
ignore-deprecated
class TestingController extends /** @scrutinizer ignore-deprecated */ Controller
{
public function controllerTest(): string
return 'computed content';
}
public function controllerTest2(): string
return 'computed content 2';
public $wasCalled = false;
public function controllerResult(): void
$this->wasCalled = true;