for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
We could not synchronize checks via GitHub's checks API since Scrutinizer's GitHub App is not installed for this repository.
Install GitHub App
<?php
namespace DoeSangue\Repositories;
use DoeSangue\Models\User;
class Users
{
public function all()
return User::all();
}
public function findByUserName($username)
return User::whereUsername($username)->get();
public function filterActive()
//
return User::whereActive(true)->get();
public function filterUnactive()
return User::whereActive(false)->get();