Completed
Push — dev ( 6a43cb...d311da )
by Zach
03:42
created
src/Http/Controllers/PageController.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -54,7 +54,7 @@
 block discarded – undo
54 54
     /**
55 55
      * Add a new page to the portfolio.
56 56
      *
57
-     * @param Larafolio\Http\Requests\AddResourceRequest $request Form request.
57
+     * @param AddResourceRequest $request Form request.
58 58
      *
59 59
      * @return \Illuminate\Http\Response
60 60
      */
Please login to merge, or discard this patch.
src/Http/Controllers/ProjectController.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -54,7 +54,7 @@
 block discarded – undo
54 54
     /**
55 55
      * Add a new project to the portfolio.
56 56
      *
57
-     * @param Larafolio\Http\Requests\AddResourceRequest $request Form request.
57
+     * @param AddResourceRequest $request Form request.
58 58
      *
59 59
      * @return \Illuminate\Http\Response
60 60
      */
Please login to merge, or discard this patch.
src/Http/Controllers/SettingsController.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -38,7 +38,7 @@  discard block
 block discarded – undo
38 38
         $deletedProjects = Project::onlyTrashed()
39 39
             ->orderBy('deleted_at', 'DESC')
40 40
             ->get()
41
-            ->map(function (Project $project) {
41
+            ->map(function(Project $project) {
42 42
                 return $project->generateProps();
43 43
             });
44 44
 
@@ -57,7 +57,7 @@  discard block
 block discarded – undo
57 57
         $deletedPages = Page::onlyTrashed()
58 58
             ->orderBy('deleted_at', 'DESC')
59 59
             ->get()
60
-            ->map(function (Page $page) {
60
+            ->map(function(Page $page) {
61 61
                 return $page->generateProps();
62 62
             });
63 63
 
Please login to merge, or discard this patch.