Completed
Pull Request — master (#10)
by Manuel
04:53 queued 01:29
created
app/Http/Controllers/GroupController.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -11,7 +11,7 @@
 block discarded – undo
11 11
      *
12 12
      * @param string $group
13 13
      *
14
-     * @return Response
14
+     * @return \Illuminate\View\View
15 15
      */
16 16
     public function show($group)
17 17
     {
Please login to merge, or discard this patch.
app/Http/Controllers/WelcomeController.php 1 patch
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -33,7 +33,7 @@  discard block
 block discarded – undo
33 33
     /**
34 34
      * Show the application welcome screen to the user.
35 35
      *
36
-     * @return Response
36
+     * @return \Illuminate\View\View
37 37
      */
38 38
     public function index()
39 39
     {
@@ -49,7 +49,7 @@  discard block
 block discarded – undo
49 49
      * @param Cache          $cache
50 50
      * @param Filesystem     $file
51 51
      *
52
-     * @return Response
52
+     * @return \Illuminate\View\View
53 53
      */
54 54
     public function gettingStarted(MarkdownParser $markdown, Cache $cache, Filesystem $file)
55 55
     {
@@ -66,7 +66,7 @@  discard block
 block discarded – undo
66 66
     /**
67 67
      * Show the statistics screen to the user.
68 68
      *
69
-     * @return Response
69
+     * @return \Illuminate\View\View
70 70
      */
71 71
     public function statistics(Statistics $statistics)
72 72
     {
Please login to merge, or discard this patch.
app/Services/Statistics.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -10,7 +10,7 @@
 block discarded – undo
10 10
     /**
11 11
      * Returns the count of all pokes.
12 12
      *
13
-     * @return mixed
13
+     * @return integer
14 14
      */
15 15
     public function totalPokes()
16 16
     {
Please login to merge, or discard this patch.