Reduce alignment of array

This commit is contained in:
James Brooks 2014-12-20 17:29:52 +00:00
parent 933e24b421
commit 0b2a700049

View File

@ -21,12 +21,12 @@ class RSSController extends Controller {
}
$feed->item([
'title' => $incident->name,
'message' => $incident->message,
'component' => $componentName,
'status' => $incident->humanStatus,
'created_at' => $incident->created_at,
'updated_at' => $incident->updated_at
'title' => $incident->name,
'message' => $incident->message,
'component' => $componentName,
'status' => $incident->humanStatus,
'created_at' => $incident->created_at,
'updated_at' => $incident->updated_at
]);
});