convert timesheets to UTC with support for user timezone (#372)

This commit is contained in:
Kevin Papst
2019-02-08 18:24:33 +01:00
committed by GitHub
parent 8dcc18dde3
commit d00596d297
58 changed files with 1637 additions and 207 deletions

View File

@@ -38,7 +38,7 @@ class ProjectVoter extends AbstractVoter
*/
protected function supports($attribute, $subject)
{
if (!$subject instanceof Project) {
if (!($subject instanceof Project)) {
return false;
}
@@ -63,10 +63,6 @@ class ProjectVoter extends AbstractVoter
return false;
}
if ($subject instanceof Project) {
return $this->hasRolePermission($user, $attribute . '_project');
}
return false;
return $this->hasRolePermission($user, $attribute . '_project');
}
}