Skip to content

How to extend Request #1085

Closed Answered by erwinstone
erwinstone asked this question in Q&A
Discussion options

You must be logged in to vote

Got it:

<?php

use Workerman\Protocols\Http\Request as WorkermanRequest;

class MyRequest extends WorkermanRequest
{
    public function getData()
    {
        return 'here is your data';
    }
}
use Workerman\Protocols\Http;

$worker->onWorkerStart = function () {
    Http::requestClass(MyRequest::class);
};

Replies: 1 comment

Comment options

You must be logged in to vote
0 replies
Answer selected by erwinstone
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
1 participant