Completed
Push — master ( b877df...b3f08b )
by Christopher
01:17
created
src/Builders/Builder.php 1 patch
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -36,7 +36,6 @@
 block discarded – undo
36 36
     /**
37 37
      * Return results where slug matches.
38 38
      *
39
-     * @param string $status
40 39
      * @return \Chriscreates\Blog\Builders\Builder
41 40
      */
42 41
     public function slug(string $slug) : Builder
Please login to merge, or discard this patch.
src/Builders/PostBuilder.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -176,7 +176,7 @@
 block discarded – undo
176 176
     /**
177 177
      * Return results where Posts contain the Category(s) passed.
178 178
      *
179
-     * @param array $options
179
+     * @param string $options
180 180
      * @return \Chriscreates\Blog\Builders\PostBuilder
181 181
      */
182 182
     public function whereCategory(...$options) : PostBuilder
Please login to merge, or discard this patch.
src/Controllers/PostController.php 2 patches
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -48,7 +48,7 @@  discard block
 block discarded – undo
48 48
     /**
49 49
      * Store a newly created resource in storage.
50 50
      *
51
-     * @param  \App\Http\Requests\ValidatePostRequest  $request
51
+     * @param  ValidatePostRequest  $request
52 52
      * @return \Illuminate\Http\Response
53 53
      */
54 54
     public function store(ValidatePostRequest $request)
@@ -104,7 +104,7 @@  discard block
 block discarded – undo
104 104
     /**
105 105
      * Update the specified resource in storage.
106 106
      *
107
-     * @param  \App\Http\Requests\ValidatePostRequest  $request
107
+     * @param  ValidatePostRequest  $request
108 108
      * @param  \Chriscreates\Blog\Post  $post
109 109
      * @return \Illuminate\Http\Response
110 110
      */
Please login to merge, or discard this patch.
Unused Use Statements   -2 removed lines patch added patch discarded remove patch
@@ -6,8 +6,6 @@
 block discarded – undo
6 6
 use Artesaos\SEOTools\Facades\SEOMeta;
7 7
 use Chriscreates\Blog\Post;
8 8
 use Chriscreates\Blog\Requests\ValidatePostRequest;
9
-use Illuminate\Http\Request;
10
-use Illuminate\Support\Facades\Storage;
11 9
 
12 10
 class PostController extends Controller
13 11
 {
Please login to merge, or discard this patch.