for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace ProxyManagerTestAsset;
use PHPUnit\Framework\TestCase;
/**
* Base test class to play around with final pre-existing methods
*
* @author Jefersson Nathan <[email protected]>
* @license MIT
*/
class ClassWithFinalMethods extends TestCase
{
final public function foo()
}
final private function bar()
final protected function baz()