Vous êtes connecté en tant que anonymous Se Deconnecter
vendor/illuminate/contracts/Support/Jsonable.php
4f5a31d2
 <?php
 
 namespace Illuminate\Contracts\Support;
 
 interface Jsonable
 {
     /**
      * Convert the object to its JSON representation.
      *
      * @param  int  $options
      * @return string
      */
     public function toJson($options = 0);
 }