Skip to content

Commit

Permalink
Bug #6, fixes to ouop-query PHP commandline script [iet:10276684]
Browse files Browse the repository at this point in the history
  • Loading branch information
nfreear committed Dec 5, 2017
1 parent 2e8e62c commit d774feb
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions bin/ouop-query.php
Original file line number Diff line number Diff line change
Expand Up @@ -21,14 +21,13 @@

$counts = [
'Total users' => OuUser::count(),
'Tranche 1' => OuUser::count([ 'batch' => 0 ]),
'Tranche 1' => OuUser::count([ 'batch' => 0 ]), // Deliberately '0'!
'Tranche 2' => OuUser::count([ 'batch' => 2 ]),
'Tranche 3' => OuUser::count([ 'batch' => 3 ]),
'Tranche 4' => OuUser::count([ 'batch' => 4 ]),
'Tranche 5' => OuUser::count([ 'batch' => 5 ]),
'Keystroke preset' => OuUser::count([ 'teslainstrument' => 'kd' ]),
'Plagiarism preset' => OuUser::count([ 'teslainstrument' => 'tpt' ]),
'Forensic preset' => OuUser::count([ 'teslainstrument' => 'fa' ]),
'Voice recog preset' => OuUser::count([ 'teslainstrument' => 'vr' ]),
'Face recog preset' => OuUser::count([ 'teslainstrument' => 'fa' ]),
'No preset' => OuUser::count([ 'teslainstrument' => null ]), // Should always be '0'!
'Is team' => OuUser::count([ 'is_team' => 1 ]),
];
Expand Down

0 comments on commit d774feb

Please sign in to comment.