| Total Complexity | 3 |
| Total Lines | 29 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 16 | class QueryRecord extends DataObject |
||
| 17 | { |
||
| 18 | private static $table_name = 'QueryRecording'; |
||
| 19 | |||
| 20 | private static $db = [ |
||
| 21 | 'Query' => 'Varchar(255)', |
||
| 22 | 'Results' => 'Int', |
||
| 23 | 'PagesVisited' => 'Int', |
||
| 24 | ]; |
||
| 25 | |||
| 26 | /** |
||
| 27 | * @param $query |
||
| 28 | * @param $count |
||
| 29 | * @return QueryRecord |
||
| 30 | * @throws ValidationException |
||
| 31 | */ |
||
| 32 | public static function findOrCreate($query, $count): QueryRecord |
||
| 47 |