Fix code formatting

This commit is contained in:
Matthew Ross 2017-03-24 22:08:58 -04:00
parent b5fc471f61
commit a7569450aa

View File

@ -61,7 +61,7 @@ class BeanLoader {
self::updateObjectList('column', 'LoadColumn',
$board->xownColumnList, $data->columns);
}
} catch(Exception $ex) {
} catch (Exception $ex) {
return false;
}
@ -181,7 +181,7 @@ class BeanLoader {
foreach ($data->assignees as $assignee) {
$user = R::load('user', $assignee->id);
if((int) $user->id) {
if ((int) $user->id) {
$task->sharedUserList[] = $user;
}
}