Skip to content

Commit 1a1a610

Browse files
authored
Fix service container docblock (#52000)
1 parent 6a27368 commit 1a1a610

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

src/Illuminate/Container/Container.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -740,7 +740,7 @@ public function makeWith($abstract, array $parameters = [])
740740
/**
741741
* Resolve the given type from the container.
742742
*
743-
* @param string|callable $abstract
743+
* @param string $abstract
744744
* @param array $parameters
745745
* @return mixed
746746
*

src/Illuminate/Foundation/Application.php

+5
Original file line numberDiff line numberDiff line change
@@ -1018,6 +1018,8 @@ public function registerDeferredProvider($provider, $service = null)
10181018
* @param string $abstract
10191019
* @param array $parameters
10201020
* @return mixed
1021+
*
1022+
* @throws \Illuminate\Contracts\Container\BindingResolutionException
10211023
*/
10221024
public function make($abstract, array $parameters = [])
10231025
{
@@ -1033,6 +1035,9 @@ public function make($abstract, array $parameters = [])
10331035
* @param array $parameters
10341036
* @param bool $raiseEvents
10351037
* @return mixed
1038+
*
1039+
* @throws \Illuminate\Contracts\Container\BindingResolutionException
1040+
* @throws \Illuminate\Contracts\Container\CircularDependencyException
10361041
*/
10371042
protected function resolve($abstract, $parameters = [], $raiseEvents = true)
10381043
{

0 commit comments

Comments
 (0)