for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace TestNamespace\Testing;
use TestNamespace\{Test1, Test2, Test3};
class MyTest extends Test1 implements Test2
{
public function MyMethod()
//We shouldn't see anything in here
$var = 1;
$var += 1;
return $var;
}
public function MyNestedMethod()
for ($i = 0; $i < 5; ++$i) {
if ($i % 2) {
$var += $i;