Overview

Namespaces

  • Evenement
  • None
  • PHP
  • Psr
    • Http
      • Message
  • Ratchet
    • Http
    • RFC6455
      • Handshake
      • Messaging
    • Server
    • Session
      • Serialize
      • Storage
        • Proxy
    • Wamp
    • WebSocket
  • React
    • EventLoop
      • Tick
      • Timer
    • Socket
    • Stream
  • Symfony
    • Component
      • HttpFoundation
        • Session
          • Attribute
          • Flash
          • Storage
            • Handler
            • Proxy
      • Routing
        • Annotation
        • Exception
        • Generator
          • Dumper
        • Loader
          • DependencyInjection
        • Matcher
          • Dumper
        • Tests
          • Annotation
          • Fixtures
            • AnnotatedClasses
            • OtherAnnotatedClasses
          • Generator
            • Dumper
          • Loader
          • Matcher
            • Dumper

Classes

  • PhpBinaryHandler
  • PhpHandler

Interfaces

  • HandlerInterface
  • Overview
  • Namespace
  • Class
  • Tree
 1: <?php
 2: namespace Ratchet\Session\Serialize;
 3: 
 4: interface HandlerInterface {
 5:     /**
 6:      * @param array
 7:      * @return string
 8:      */
 9:     function serialize(array $data);
10: 
11:     /**
12:      * @param string
13:      * @return array
14:      */
15:     function unserialize($raw);
16: }
17: 
Ratchet API documentation generated by ApiGen 2.8.0