Skip to content

Commit 47f92ae

Browse files
gaetan-hexadogactions-user
authored andcommitted
Automatically applied php-cs-fixer changes
1 parent 85f00ef commit 47f92ae

File tree

11 files changed

+173
-259
lines changed

11 files changed

+173
-259
lines changed

src/Components/Children.php

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -8,25 +8,22 @@
88
class Children extends Component
99
{
1010
/**
11-
* The item items
11+
* The item items.
1212
*
1313
* @var Collection
1414
*/
1515
public $items;
1616

1717
/**
18-
* Create the component instance
19-
*
20-
* @param Collection $items
21-
* @return void
18+
* Create the component instance.
2219
*/
2320
public function __construct(Collection $items)
2421
{
2522
$this->items = $items ?? collect();
2623
}
2724

2825
/**
29-
* Get the view / contents that represents the component
26+
* Get the view / contents that represents the component.
3027
*
3128
* @return \Illuminate\View\View
3229
*/

src/Components/Divider.php

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -8,26 +8,22 @@
88
class Divider extends Component
99
{
1010
/**
11-
* The item
11+
* The item.
1212
*
1313
* @var Item
1414
*/
1515
public $item;
1616

1717
/**
18-
* Create the component instance
19-
*
20-
* @param Item $item
21-
*
22-
* @return void
18+
* Create the component instance.
2319
*/
2420
public function __construct(Item $item)
2521
{
2622
$this->item = $item;
2723
}
2824

2925
/**
30-
* Get the view / contents that represents the component
26+
* Get the view / contents that represents the component.
3127
*
3228
* @return \Illuminate\View\View
3329
*/

src/Components/Header.php

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -8,26 +8,22 @@
88
class Header extends Component
99
{
1010
/**
11-
* The item
11+
* The item.
1212
*
1313
* @var Item
1414
*/
1515
public $item;
1616

1717
/**
18-
* Create the component instance
19-
*
20-
* @param Item $item
21-
*
22-
* @return void
18+
* Create the component instance.
2319
*/
2420
public function __construct(Item $item)
2521
{
2622
$this->item = $item;
2723
}
2824

2925
/**
30-
* Get the view / contents that represents the component
26+
* Get the view / contents that represents the component.
3127
*
3228
* @return \Illuminate\View\View
3329
*/

src/Components/Icon.php

Lines changed: 4 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -8,25 +8,21 @@
88
class Icon extends Component
99
{
1010
/**
11-
* The item icon
11+
* The item icon.
1212
*
1313
* @var string
1414
*/
1515
public $icon;
1616

1717
/**
18-
* The item
18+
* The item.
1919
*
2020
* @var Item
2121
*/
2222
public $item;
2323

2424
/**
25-
* Create the component instance
26-
*
27-
* @param Item $item
28-
*
29-
* @return void
25+
* Create the component instance.
3026
*/
3127
public function __construct(Item $item)
3228
{
@@ -35,7 +31,7 @@ public function __construct(Item $item)
3531
}
3632

3733
/**
38-
* Get the view / contents that represents the component
34+
* Get the view / contents that represents the component.
3935
*
4036
* @return \Illuminate\View\View
4137
*/

src/Components/Item.php

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -8,25 +8,22 @@
88
class Item extends Component
99
{
1010
/**
11-
* The item
11+
* The item.
1212
*
1313
* @var Item
1414
*/
1515
public $item;
1616

1717
/**
18-
* Create the component instance
19-
*
20-
* @param MenusManagerItem $item
21-
* @return void
18+
* Create the component instance.
2219
*/
2320
public function __construct(MenusManagerItem $item)
2421
{
2522
$this->item = $item;
2623
}
2724

2825
/**
29-
* Get the view / contents that represents the component
26+
* Get the view / contents that represents the component.
3027
*
3128
* @return \Illuminate\View\View
3229
*/

src/Components/Menu.php

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -9,25 +9,25 @@
99
class Menu extends Component
1010
{
1111
/**
12-
* The menu items
12+
* The menu items.
1313
*
1414
* @var Collection
1515
*/
1616
public $items;
17-
17+
1818
/**
19-
* The menu
19+
* The menu.
2020
*
2121
* @var string
2222
*/
2323
public $menu;
2424

2525
/**
26-
* Create the component instance
26+
* Create the component instance.
2727
*
28-
* @param string $type
29-
* @param string $message
30-
* @return void
28+
* @param string $type
29+
* @param string $message
30+
* @param mixed $name
3131
*/
3232
public function __construct($name)
3333
{
@@ -36,7 +36,7 @@ public function __construct($name)
3636
}
3737

3838
/**
39-
* Get the view / contents that represents the component
39+
* Get the view / contents that represents the component.
4040
*
4141
* @return \Illuminate\View\View
4242
*/

0 commit comments

Comments
 (0)