| 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 | * @param null $userId |
||
| 28 | * @return false|int |
||
| 29 | */ |
||
| 30 | public function storeNewTicket($title, $songId, $userId = null) |
||
| 49 | |||
| 50 | /** |
||
| 51 | * Overridden to take advantage of autoIds |
||
| 52 | * |
||
| 53 | * @param $performerName |
||
| 54 | * @param bool|false $createMissing |
||
| 55 | * |
||
| 56 | * @return mixed |
||
| 57 | */ |
||
| 58 | public function fetchPerformerIdByName($performerName, $createMissing = false) |
||
| 72 | } |
||
| 73 |