Skip to content
Snippets Groups Projects
Commit 7c93ef36 authored by Demian Katz's avatar Demian Katz
Browse files

Fixed misplaced return statement.

parent 6bc90aa5
Branches
Tags archive/issue/8581
No related merge requests found
...@@ -941,8 +941,8 @@ class Demo extends AbstractBase ...@@ -941,8 +941,8 @@ class Demo extends AbstractBase
$transList[$i]['title'] = 'Demo Title ' . $i; $transList[$i]['title'] = 'Demo Title ' . $i;
} }
} }
return $transList;
} }
return $transList;
} }
/** /**
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment