@@ -3,7 +3,7 @@ discard block |
||
| 3 | 3 | * This file contains only the User class. |
| 4 | 4 | */ |
| 5 | 5 | |
| 6 | -declare(strict_types = 1); |
|
| 6 | +declare(strict_types=1); |
|
| 7 | 7 | |
| 8 | 8 | namespace AppBundle\Model; |
| 9 | 9 | |
@@ -232,7 +232,7 @@ discard block |
||
| 232 | 232 | */ |
| 233 | 233 | public function countEdits(Project $project, $namespace = 'all', $start = '', $end = ''): int |
| 234 | 234 | { |
| 235 | - return (int) $this->getRepository()->countEdits($project, $this, $namespace, $start, $end); |
|
| 235 | + return (int)$this->getRepository()->countEdits($project, $this, $namespace, $start, $end); |
|
| 236 | 236 | } |
| 237 | 237 | |
| 238 | 238 | /** |