You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

AbstractModel.php 346B

12345678910111213141516171819202122
  1. <?php
  2. /**
  3. * Created by PhpStorm.
  4. * User: adrien.gandarias
  5. * Date: 08/04/2015
  6. * Time: 10:00
  7. */
  8. namespace App\Http\DBO;
  9. use Illuminate\Database\Eloquent\Model;
  10. abstract class AbstractModel implements \JsonSerializable {
  11. /**
  12. * @return string
  13. */
  14. public function __toString()
  15. {
  16. return json_encode($this);
  17. }
  18. }