(thread *phpThread)
| 29 | ) |
| 30 | |
| 31 | func convertToRegularThread(thread *phpThread) { |
| 32 | thread.setHandler(®ularThread{ |
| 33 | thread: thread, |
| 34 | state: thread.state, |
| 35 | }) |
| 36 | attachRegularThread(thread) |
| 37 | } |
| 38 | |
| 39 | // beforeScriptExecution returns the name of the script or an empty string on shutdown |
| 40 | func (handler *regularThread) beforeScriptExecution() string { |