for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Surge\LaravelSalesforce\Events;
class ResponseReceived
{
/**
* @var array
*/
public $log;
* Create a new job instance.
* $log
* - data
* - class
* - url
* - type.
*
* @param array $log
public function __construct($log)
$this->log = $log;
}