for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Nip\Controllers\Tests\Fixtures\Controllers\Parent;
use Nip\Controllers\Controller;
/**
* Class ChildController
* @package Nip\Controllers\Tests\Fixtures\Controllers\Parent
*/
class ChildController extends Controller
{
public function index()
return 'index';
}