Completed
Push — master ( 786b76...4e834f )
by Basil
02:43
created
dev/RepoController.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -97,7 +97,7 @@  discard block
 block discarded – undo
97 97
         // generate summary overview
98 98
         foreach ($this->repos as $repo) {
99 99
             $newRepoHome = $this->getFilesystemRepoPath($repo);
100
-            if (file_exists($newRepoHome . DIRECTORY_SEPARATOR . '.git')) {
100
+            if (file_exists($newRepoHome.DIRECTORY_SEPARATOR.'.git')) {
101 101
                 $summary[] = $this->summaryItem($repo, false, true);
102 102
             } elseif ($this->forkExists($username, $repo)) {
103 103
                 $summary[] = $this->summaryItem($repo, true, false);
@@ -245,7 +245,7 @@  discard block
 block discarded – undo
245 245
      */
246 246
     private function getFilesystemRepoPath($repo)
247 247
     {
248
-        return 'repos' . DIRECTORY_SEPARATOR . $repo;
248
+        return 'repos'.DIRECTORY_SEPARATOR.$repo;
249 249
     }
250 250
     
251 251
     /**
Please login to merge, or discard this patch.