| Total Complexity | 2 | 
| Total Lines | 24 | 
| Duplicated Lines | 0 % | 
| Changes | 1 | ||
| Bugs | 1 | Features | 0 | 
| 1 | <?php  | 
            ||
| 11 | class NonTeamUsersQuery extends Query  | 
            ||
| 12 | { | 
            ||
| 13 | /**  | 
            ||
| 14 | * Retrieve a Query builder.  | 
            ||
| 15 | *  | 
            ||
| 16 | * @return UserBuilder  | 
            ||
| 17 | */  | 
            ||
| 18 | protected function builder(): UserBuilder  | 
            ||
| 19 |     { | 
            ||
| 20 | return User::query()->withInactive();  | 
            ||
| 21 | }  | 
            ||
| 22 | |||
| 23 | /**  | 
            ||
| 24 | * Retrieve a Collection of User's who are NOT team members.  | 
            ||
| 25 | *  | 
            ||
| 26 | * @return Collection  | 
            ||
| 27 | */  | 
            ||
| 28 | public function execute()  | 
            ||
| 35 | }  | 
            ||
| 36 | }  | 
            ||
| 37 |