for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace PragmaRX\Google2FALaravel\Support;
trait Auth
{
/**
* The auth instance.
*
* @var
*/
protected $auth;
* Get or make an auth instance.
* @return \Illuminate\Foundation\Application|mixed
protected function getAuth()
if (is_null($this->auth)) {
$this->auth = app($this->config('auth'));
config()
$children
This check looks for function calls that miss required arguments.
}
return $this->auth;
abstract public function config($string, $children);
This check looks for function calls that miss required arguments.