Skip to content
This repository has been archived by the owner on Jun 22, 2022. It is now read-only.

Commit

Permalink
Merge pull request #6 from wilburpowery/master
Browse files Browse the repository at this point in the history
add the name of the dependency that should use that passed in value.
  • Loading branch information
calebporzio committed Jun 22, 2018
2 parents f289ebb + a9898ef commit c4af926
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions src/GetsOnboarded.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,13 @@
*/
trait GetsOnboarded
{
/**
* This provides a pathway for the package's API
*
* @return \Calebporzio\Onboard\OnboardingManager $onboarding
*/
public function onboarding()
{
return App::make(OnboardingManager::class, [$this]);
}
/**
* This provides a pathway for the package's API
*
* @return \Calebporzio\Onboard\OnboardingManager $onboarding
*/
public function onboarding()
{
return App::make(OnboardingManager::class, ['user' => $this]);
}
}

0 comments on commit c4af926

Please sign in to comment.