for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace App\Repositories;
use App\Profile;
use Auth;
class ProfileRepository extends Repository
{
/**
* @return Profile
*/
public function getModel()
return new Profile();
}