Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
Y
yii2
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
PSDI Army
yii2
Commits
3ea2ffbb
Commit
3ea2ffbb
authored
May 11, 2014
by
Qiang Xue
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed the issue that `ServiceLocator` still returns the old component after…
Fixed the issue that `ServiceLocator` still returns the old component after calling `set()` with a new definition
parent
c67c4910
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
0 deletions
+3
-0
CHANGELOG.md
framework/CHANGELOG.md
+1
-0
ServiceLocator.php
framework/di/ServiceLocator.php
+2
-0
No files found.
framework/CHANGELOG.md
View file @
3ea2ffbb
...
...
@@ -26,6 +26,7 @@ Yii Framework 2 Change Log
-
Bug #3327: Fixed "Unable to find debug data" when logging objects with circular references (jarekkozak, samdark)
-
Bug #3368: Fix for comparing numeric attributes in JavaScript (technixp)
-
Bug: Fixed inconsistent return of
`\yii\console\Application::runAction()`
(samdark)
-
Bug: Fixed the issue that
`ServiceLocator`
still returns the old component after calling
`set()`
with a new definition (qiangxue)
-
Enh #2264:
`CookieCollection::has()`
will return false for expired or removed cookies (qiangxue)
-
Enh #2435:
`yii\db\IntegrityException`
is now thrown on database integrity errors instead of general
`yii\db\Exception`
(samdark)
-
Enh #2837: Error page now shows arguments in stack trace method calls (samdark)
...
...
framework/di/ServiceLocator.php
View file @
3ea2ffbb
...
...
@@ -188,6 +188,8 @@ class ServiceLocator extends Component
return
;
}
unset
(
$this
->
_components
[
$id
]);
if
(
is_object
(
$definition
)
||
is_callable
(
$definition
,
true
))
{
// an object, a class name, or a PHP callable
$this
->
_definitions
[
$id
]
=
$definition
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment