File tree Expand file tree Collapse file tree 11 files changed +173
-259
lines changed Expand file tree Collapse file tree 11 files changed +173
-259
lines changed Original file line number Diff line number Diff line change 88class 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 */
Original file line number Diff line number Diff line change 88class 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 */
Original file line number Diff line number Diff line change 88class 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 */
Original file line number Diff line number Diff line change 88class 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 */
Original file line number Diff line number Diff line change 88class 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 */
Original file line number Diff line number Diff line change 99class 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 */
You can’t perform that action at this time.
0 commit comments