Overview

Namespaces

  • Illuminate
    • Support
      • Contracts
    • Test
  • PHP

Interfaces

  • ArrayableInterface
  • JsonableInterface
  • Overview
  • Namespace
  • Class
  • Tree
 1: <?php namespace Illuminate\Support\Contracts;
 2: 
 3: interface JsonableInterface {
 4: 
 5:     /**
 6:      * Convert the object to its JSON representation.
 7:      *
 8:      * @param  int  $options
 9:      * @return string
10:      */
11:     public function toJson($options = 0);
12: 
13: }
14: 
API documentation generated by ApiGen 2.8.0