Skip to content

Commit a4ab046

Browse files
committed
Merge branch '5.7' of github.com:laravel/framework into 5.7
2 parents 36d3436 + e9d6f20 commit a4ab046

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Illuminate/Container/Container.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -196,7 +196,7 @@ public function resolved($abstract)
196196
public function isShared($abstract)
197197
{
198198
return isset($this->instances[$abstract]) ||
199-
(isset($this->bindings[$abstract]['shared']) &&
199+
(isset($this->bindings[$abstract]['shared']) &&
200200
$this->bindings[$abstract]['shared'] === true);
201201
}
202202

@@ -779,7 +779,7 @@ public function build($concrete)
779779
$reflector = new ReflectionClass($concrete);
780780

781781
// If the type is not instantiable, the developer is attempting to resolve
782-
// an abstract type such as an Interface of Abstract Class and there is
782+
// an abstract type such as an Interface or Abstract Class and there is
783783
// no binding registered for the abstractions so we need to bail out.
784784
if (! $reflector->isInstantiable()) {
785785
return $this->notInstantiable($concrete);

0 commit comments

Comments
 (0)