representation of a non-worker PHP thread executes PHP scripts in a web context implements the threadHandler interface
| 14 | // executes PHP scripts in a web context |
| 15 | // implements the threadHandler interface |
| 16 | type regularThread struct { |
| 17 | contextHolder |
| 18 | |
| 19 | state *state.ThreadState |
| 20 | thread *phpThread |
| 21 | requestCount int |
| 22 | } |
| 23 | |
| 24 | var ( |
| 25 | regularThreads []*phpThread |
nothing calls this directly
no outgoing calls
no test coverage detected