Skip to content

Commit 0cc720c

Browse files
committed
php alignment issues cleared
1 parent 95bd347 commit 0cc720c

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

administrator/components/com_workflow/src/Controller/GraphController.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -269,9 +269,9 @@ public function getTransitions()
269269
'ordering' => (int) $transition->ordering,
270270
'workflow_id' => (int) $transition->workflow_id,
271271
'permissions' => [
272-
'edit' => $canEdit,
273-
'delete' => $canDelete,
274-
'run_transition' => $canRun
272+
'edit' => $canEdit,
273+
'delete' => $canDelete,
274+
'run_transition' => $canRun,
275275
],
276276
];
277277
}

administrator/components/com_workflow/src/Dispatcher/Dispatcher.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ protected function checkAccess()
3838
$parts = explode('.', $extension);
3939

4040
// Allow access to the 'graph' view for all users with access
41-
if ($this->app->isClient('administrator') && $view === 'graph' && $layout === 'modal') {
41+
if ($this->app->isClient('administrator') && $view === 'graph' && $layout === 'modal') {
4242
return;
4343
}
4444

0 commit comments

Comments
 (0)