Skip to content

Commit

Permalink
Merge pull request #35 from dotkernel/issue-34
Browse files Browse the repository at this point in the history
Issue #34: Fixed mixed-up messages in `NavigationServiceFactory`
  • Loading branch information
alexmerlin authored Jan 30, 2025
2 parents 49f02e3 + a4d67c2 commit 1626451
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
3 changes: 1 addition & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,7 @@ composer require dotkernel/dot-navigation

Merge `ConfigProvider` to your application's configuration.

The package uses dot-helpers package, please merge dot-helpers `ConfigProvider` to your application's configuration
also, if it's not merged already!
> The package uses dot-helpers package, please merge dot-helpers `ConfigProvider` to your application's configuration also, if it's not merged already!
Register `NavigationMiddleware` in your middleware pipe between the routing and the dispatching middleware.

Expand Down
4 changes: 2 additions & 2 deletions src/Factory/NavigationServiceFactory.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@

class NavigationServiceFactory
{
public const MESSAGE_MISSING_PLUGIN_MANAGER = 'Unable to find RouteHelper in the container';
public const MESSAGE_MISSING_ROUTE_HELPER = 'Unable to find ProviderPluginManager in the container';
public const MESSAGE_MISSING_PLUGIN_MANAGER = 'Unable to find ProviderPluginManager in the container';
public const MESSAGE_MISSING_ROUTE_HELPER = 'Unable to find RouteHelper in the container';
public const MESSAGE_MISSING_NAVIGATION_OPTIONS = 'Unable to find NavigationOptions in the container';

/**
Expand Down

0 comments on commit 1626451

Please sign in to comment.