()
| 54 | } |
| 55 | |
| 56 | func newFrankenPHPContext() *frankenPHPContext { |
| 57 | return &frankenPHPContext{ |
| 58 | done: make(chan any), |
| 59 | startedAt: time.Now(), |
| 60 | } |
| 61 | } |
| 62 | |
| 63 | // NewRequestWithContext creates a new FrankenPHP request context. |
| 64 | // |
no outgoing calls
no test coverage detected