Skip to content

Commit

Permalink
Update phpcs violation in line length
Browse files Browse the repository at this point in the history
  • Loading branch information
robbieaverill committed Mar 28, 2018
1 parent 00c2342 commit 4538fb9
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/Admin/AdvancedWorkflowAdmin.php
Original file line number Diff line number Diff line change
Expand Up @@ -319,7 +319,8 @@ public function export(HTTPRequest $request)
$definitionID = end($url);
if ($definitionID && is_numeric($definitionID)) {
$exporter = new WorkflowDefinitionExporter($definitionID);
$exportFilename = WorkflowDefinitionExporter::config()->get('export_filename_prefix') . '-' . $definitionID . '.yml';
$exportFilename = WorkflowDefinitionExporter::config()
->get('export_filename_prefix') . '-' . $definitionID . '.yml';
$exportBody = $exporter->export();
$fileData = array(
'name' => $exportFilename,
Expand Down

0 comments on commit 4538fb9

Please sign in to comment.