(threadIndex int)
| 50 | } |
| 51 | |
| 52 | func newPHPThread(threadIndex int) *phpThread { |
| 53 | return &phpThread{ |
| 54 | threadIndex: threadIndex, |
| 55 | requestChan: make(chan contextHolder), |
| 56 | state: state.NewThreadState(), |
| 57 | } |
| 58 | } |
| 59 | |
| 60 | // boot starts the underlying PHP thread |
| 61 | func (thread *phpThread) boot() { |
no test coverage detected