8000 [DI] Autowiring exception thrown when inlined service is removed by weaverryan · Pull Request #22993 · symfony/symfony · GitHub
[go: up one dir, main page]

Skip to content

[DI] Autowiring exception thrown when inlined service is removed #22993

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

Closed
wants to merge 3 commits into from
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
< FF94 details data-target="details-toggle.detailsTarget" data-view-component="true" class="diffbar-item details-reset details-overlay position-relative text-center">
Diff view
Diff view
Prev Previous commit
Next Next commit
Removing deprecated method
  • Loading branch information
weaverryan committed May 31, 2017
commit b05a5f76aa3c89c6985b95da61aae562822ee133
Original file line number Diff line number Diff line change
Expand Up @@ -33,20 +33,6 @@ public function setRepeatedPass(RepeatedPass $repeatedPass)
$this->repeatedPass = $repeatedPass;
}

/**
* Returns an array of all services inlined by this pass.
*
* @return array Service id strings
*
* @deprecated This method is deprecated as of 3.3 and will be removed in 4.0. Use getInlinedServiceIdData() instead.
*/
public function getInlinedServiceIds()
{
@trigger_error(sprintf('%s is deprecated as of 3.3 and will be removed in 4.0. Use getInlinedServiceIdData() instead.', __METHOD__), E_USER_DEPRECATED);

return array_keys($this->inlinedServiceIds);
}

/**
* Returns an array of all services inlined by this pass.
*
Expand Down
0