Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[6.x] Adds support for Container::call($callableObject) #30156

Conversation

jarektkaczyk
Copy link
Contributor

Adds support for callable objects in Container::call:

class CallMe {
  public function __invoke(stdClass $dependency) {
    return $dependency;
  }
}

app()->call(new CallMe); // currently would fail

@jarektkaczyk jarektkaczyk changed the title Adds support for Container::call() [6.x] [feature] Adds support for Container::call($callableObject) Oct 2, 2019
@GrahamCampbell GrahamCampbell changed the title [6.x] [feature] Adds support for Container::call($callableObject) [6.x] Adds support for Container::call($callableObject) Oct 2, 2019
@taylorotwell taylorotwell merged commit d0b0262 into laravel:6.x Oct 2, 2019
i-bajrai pushed a commit to i-bajrai/framework that referenced this pull request Oct 4, 2019
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants