for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php namespace WITR\Http\Controllers;
use WITR\Eboard;
use WITR\SystemSetting;
class HomeController extends Controller {
/**
* Show the application dashboard to the user.
*
* @return Response
*/
public function index()
{
$banner = SystemSetting::frontPageBannerText();
frontPageBannerText()
WITR\SystemSetting
scopeFrontPageBannerText()
This check marks calls to methods that do not seem to exist on an object.
This is most likely the result of a method being renamed without all references to it being renamed likewise.
return view('home.index')->withBanner($banner);
}
public function defaultDan()
return view('home.default');
public function about()
return view('about');
public function contact()
$eboard = Eboard::all();
return view('contact', ['eboard' => $eboard]);
public function listen()
$pulseMounts = app('config')['witr.icecast.mounts.studio-x'];
$undergroundMounts = app('config')['witr.icecast.mounts.studio-a'];
return view('listen', compact('pulseMounts', 'undergroundMounts'));
This check marks calls to methods that do not seem to exist on an object.
This is most likely the result of a method being renamed without all references to it being renamed likewise.