Skip to content

Commit

Permalink
fix(crumb): Fix missing property assignment (Fixes #20) (#21)
Browse files Browse the repository at this point in the history
  • Loading branch information
Log1x authored Oct 13, 2023
1 parent d040659 commit 3af28f4
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions src/Crumb.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,13 @@

class Crumb
{
/**
* The breadcrumb configuration.
*
* @var array
*/
protected $config = [];

/**
* The breadcrumb items.
*
Expand Down

1 comment on commit 3af28f4

@iign
Copy link

@iign iign commented on 3af28f4 Oct 13, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Well that was fast! Thanks

Please sign in to comment.