for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Omatech\Mage\Core\Repositories\Users;
use Omatech\Mage\Core\Domains\Users\Contracts\AllUserInterface;
use Omatech\Mage\Core\Repositories\UserBaseRepository;
class AllUser extends UserBaseRepository implements AllUserInterface
{
/**
* @return mixed
*/
public function get()
return $this->query()
->paginate()
->toArray();
}