| 1 | <?php |
||
| 11 | class MySql extends AbstractSql |
||
| 12 | { |
||
| 13 | /** |
||
| 14 | * {@inheritdoc} |
||
| 15 | */ |
||
| 16 | protected function concatenateEscapedFields($fields) |
||
| 20 | |||
| 21 | /** |
||
| 22 | * Overridden to take advantage of autoIds |
||
| 23 | * |
||
| 24 | * @param $title |
||
| 25 | * @param $songId |
||
| 26 | * |
||
| 27 | * @return int|false |
||
| 28 | */ |
||
| 29 | public function storeNewTicket($title, $songId) |
||
| 44 | |||
| 45 | /** |
||
| 46 | * Overridden to take advantage of autoIds |
||
| 47 | * |
||
| 48 | * @param $performerName |
||
| 49 | * @param bool|false $createMissing |
||
| 50 | * |
||
| 51 | * @return mixed |
||
| 52 | */ |
||
| 53 | public function fetchPerformerIdByName($performerName, $createMissing = false) |
||
| 67 | } |
||
| 68 |