for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace App\Containers\Welcome\Controllers;
use App\Port\Controller\Abstracts\PortWebController;
/**
* Class WebController
*
* @author Mahmoud Zalt <[email protected]>
*/
class WebController extends PortWebController
{
* @return string
public function sayWelcome()
return view('just-welcome');
}