Completed
Push — dev ( 93901c...77b899 )
by Zach
03:48
created
src/Models/ContentTraits/HasBlocks.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
      * @param string $name Name of text block to get.
56 56
      *
57
-     * @return \Larafolio\Models\TextBlock|null
57
+     * @return \Illuminate\Database\Eloquent\Model|null
58 58
      */
59 59
     public function block($name)
60 60
     {
Please login to merge, or discard this patch.
src/Models/ContentTraits/HasImages.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
      * @param string $name Name of image to get.
56 56
      *
57
-     * @return \Larafolio\Models\Image|null
57
+     * @return \Illuminate\Database\Eloquent\Model|null
58 58
      */
59 59
     public function image($name)
60 60
     {
Please login to merge, or discard this patch.
src/Models/ContentTraits/HasLinks.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
      * @param string $name Name of link to get.
56 56
      *
57
-     * @return \Larafolio\Models\Link|null
57
+     * @return \Illuminate\Database\Eloquent\Model|null
58 58
      */
59 59
     public function link($name)
60 60
     {
Please login to merge, or discard this patch.
src/Models/ManagesPortfolio.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -56,7 +56,7 @@
 block discarded – undo
56 56
      *
57 57
      * @param \Larafolio\Models\HasContent $model Model to delete.
58 58
      *
59
-     * @return bool
59
+     * @return boolean|null
60 60
      */
61 61
     protected function purgeModel(HasContent $model)
62 62
     {
Please login to merge, or discard this patch.
src/Models/ContentTraits/HasLines.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
      * @param string $name Name of text line to get.
56 56
      *
57
-     * @return \Larafolio\Models\TextBlock|null
57
+     * @return \Illuminate\Database\Eloquent\Model|null
58 58
      */
59 59
     public function line($name)
60 60
     {
Please login to merge, or discard this patch.
src/Http/Controllers/PageImageController.php 1 patch
Doc Comments   -2 removed lines patch added patch discarded remove patch
@@ -31,7 +31,6 @@  discard block
 block discarded – undo
31 31
      * Show images for project.
32 32
      *
33 33
      * @param \Illuminate\Http\Request $request Request from user.
34
-     * @param string                   $page    Slug of page to show.
35 34
      *
36 35
      * @return \Illuminate\Http\Response
37 36
      */
@@ -46,7 +45,6 @@  discard block
 block discarded – undo
46 45
      * Add a new page image.
47 46
      *
48 47
      * @param \Illuminate\Http\Request $request Form request.
49
-     * @param string                   $page    Slug of page to add image to.
50 48
      */
51 49
     public function store(Request $request, $slug)
52 50
     {
Please login to merge, or discard this patch.