Overview

Namespaces

  • Composer
    • Autoload
  • Illuminate
    • Support
      • Contracts
      • Facades
  • Laravella
    • Cart
      • Facades
  • None
  • PHP

Interfaces

  • ArrayableInterface
  • JsonableInterface
  • MessageProviderInterface
  • RenderableInterface
  • ResponsePreparerInterface
  • Overview
  • Namespace
  • Class
  • Tree
 1: <?php namespace Illuminate\Support\Contracts;
 2: 
 3: interface ResponsePreparerInterface {
 4: 
 5:     /**
 6:      * Prepare the given value as a Response object.
 7:      *
 8:      * @param  mixed  $value
 9:      * @return \Symfony\Component\HttpFoundation\Response
10:      */
11:     public function prepareResponse($value);
12: 
13: }
cart API documentation generated by ApiGen 2.8.0