Conditions | 1 |
Paths | 1 |
Total Lines | 9 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
26 | public function title_search() |
||
27 | { |
||
28 | $title_chars = $this->request->variable('duplicateeditinput', '', true); |
||
29 | |||
30 | $matches = $this->entity->title_search($title_chars, 10); |
||
31 | |||
32 | return new \Symfony\Component\HttpFoundation\JsonResponse([ |
||
33 | 'keyword' => $title_chars, |
||
34 | 'results' => $matches, |
||
35 | ]); |
||
38 |