Skip to content

Commit 265afee

Browse files
Merge pull request #14 from hexadog/develop
Develop
2 parents 7828b70 + 09014a8 commit 265afee

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

src/Components/Children.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ public function __construct(Collection $items)
2525
/**
2626
* Get the view / contents that represents the component.
2727
*
28-
* @return \Illuminate\View\View
28+
* @return \Closure|\Illuminate\Contracts\Support\Htmlable|\Illuminate\Contracts\View\View|string
2929
*/
3030
public function render()
3131
{

src/Components/Divider.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ public function __construct(Item $item)
2525
/**
2626
* Get the view / contents that represents the component.
2727
*
28-
* @return \Illuminate\View\View
28+
* @return \Closure|\Illuminate\Contracts\Support\Htmlable|\Illuminate\Contracts\View\View|string
2929
*/
3030
public function render()
3131
{

src/Components/Header.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ public function __construct(Item $item)
2525
/**
2626
* Get the view / contents that represents the component.
2727
*
28-
* @return \Illuminate\View\View
28+
* @return \Closure|\Illuminate\Contracts\Support\Htmlable|\Illuminate\Contracts\View\View|string
2929
*/
3030
public function render()
3131
{

src/Components/Icon.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ public function __construct(Item $item)
3333
/**
3434
* Get the view / contents that represents the component.
3535
*
36-
* @return \Illuminate\View\View
36+
* @return \Closure|\Illuminate\Contracts\Support\Htmlable|\Illuminate\Contracts\View\View|string
3737
*/
3838
public function render()
3939
{

src/Components/Item.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ public function __construct(MenusManagerItem $item)
2525
/**
2626
* Get the view / contents that represents the component.
2727
*
28-
* @return \Illuminate\View\View
28+
* @return \Closure|\Illuminate\Contracts\Support\Htmlable|\Illuminate\Contracts\View\View|string
2929
*/
3030
public function render()
3131
{

src/Components/Menu.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ public function __construct($name)
3838
/**
3939
* Get the view / contents that represents the component.
4040
*
41-
* @return \Illuminate\View\View
41+
* @return \Closure|\Illuminate\Contracts\Support\Htmlable|\Illuminate\Contracts\View\View|string
4242
*/
4343
public function render()
4444
{

0 commit comments

Comments
 (0)