8000 [DependencyInjection] Add autowiring capabilities by dunglas · Pull Request #15613 · symfony/symfony · GitHub
[go: up one dir, main page]

Skip to content

[DependencyInjection] Add autowiring capabilities #15613

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 19 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
Diff view
Diff view
Prev Previous commit
Next Next commit
Fix CS
  • Loading branch information
dunglas committed Oct 1, 2015
commit 195f6c0abc0ff15ef7cfddf3e14d0283737abdd3
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ public function process(ContainerBuilder $container)
/**
* Wires the given definition.
*
* @param string $id
* @param string $id
* @param Definition $definition
*
* @throws RuntimeException
Expand Down Expand Up @@ -171,8 +171,8 @@ private function set($type, $value)
}

unset($this->typesToId[$type]);

$this->notGuessableTypesToId[$type] = true;

return;
}

Expand Down Expand Up @@ -209,7 +209,7 @@ private function createAutowiredDefinition(\ReflectionClass $typeHint)
/**
* Retrieves the reflection class associated with the given service.
*
* @param string $id
* @param string $id
* @param Definition $definition
*
* @return \ReflectionClass|null
Expand Down
0