PHP Classes

File: tests/socket-tests/TestServiceCallback.php

Recommend this page to a friend!
  Classes of Maik Greubel   PHP Generics   tests/socket-tests/TestServiceCallback.php   Download  
File: tests/socket-tests/TestServiceCallback.php
Role: Class source
Content type: text/plain
Description: Callback for unit test for manually testing ServerSocket
Class: PHP Generics
Framework for accessing streams, sockets and logs
Author: By
Last change: Update of tests/socket-tests/TestServiceCallback.php
Date: 2 months ago
Size: 233 bytes
 

Contents

Class file image Download
<?php

namespace Generics\Tests;

use
Generics\Socket\ServiceCallback;
use
Generics\Socket\Socket;

class
TestServiceCallback extends ServiceCallback
{
    public function
callback(Socket $client)
    {
        return
false;
    }
}