*/ class UpdateIncidentCommandTest extends AbstractCommandTestCase { protected function getObjectAndParams() { $params = [ 'incident' => new Incident(), 'name' => 'Test', 'status' => 1, 'message' => 'Foo bar baz', 'visible' => 1, 'component_id' => 1, 'component_status' => 1, 'notify' => false, 'incident_date' => null, ]; $object = new UpdateIncidentCommand( $params['incident'], $params['name'], $params['status'], $params['message'], $params['visible'], $params['component_id'], $params['component_status'], $params['notify'], $params['incident_date'] ); return compact('params', 'object'); } protected function objectHasRules() { return true; } protected function getHandlerClass() { return UpdateIncidentCommandHandler::class; } }