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\Arrayable;
class ArrayableStub implements Arrayable
{
/**
* Get the instance as an array.
*
* @return array
*/
public function toArray()
return ['foo' => 'bar'];
}