for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Swis\Laravel\JavaScriptData\Stub;
use Illuminate\Contracts\Support\Jsonable;
class JsonableStub implements Jsonable
{
/**
* Convert the object to its JSON representation.
*
* @param int $options
* @return string
*/
public function toJson($options = 0)
return '{"foo":"bar"}';
}