aboutsummaryrefslogtreecommitdiffhomepage
path: root/assets/php/vendor/react/socket/tests/Stub/ServerStub.php
blob: d9e74f471b663779c14584ffac2ffaeac8deff33 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<?php

namespace React\Tests\Socket\Stub;

use Evenement\EventEmitter;
use React\Socket\ServerInterface;

class ServerStub extends EventEmitter implements ServerInterface
{
    public function getAddress()
    {
        return '127.0.0.1:80';
    }

    public function close()
    {
    }
}