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