Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
S
syncEnrollments
Project
Project
Details
Activity
Releases
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
Yeray Santana Hualde
syncEnrollments
Commits
5dd3ec6f
Commit
5dd3ec6f
authored
Apr 02, 2013
by
Taylor Otwell
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #1845 from stevenklar/master
Add unregister IoC
parents
e86532e0
4086d130
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
42 additions
and
4 deletions
+42
-4
ioc.md
laravel/documentation/ioc.md
+10
-1
ioc.php
laravel/ioc.php
+18
-3
ioc.test.php
laravel/tests/cases/ioc.test.php
+14
-0
No files found.
laravel/documentation/ioc.md
View file @
5dd3ec6f
...
...
@@ -47,3 +47,12 @@ Now that we have SwiftMailer registered in the container, we can resolve it usin
$mailer = IoC::resolve('mailer');
> **Note:** You may also [register controllers in the container](/docs/controllers#dependency-injection).
<a
name=
"unregister"
></a>
## Unregister an existing instance
For test purposes sometimes you need to unregister some container.
#### Unregister example mail class:
IoC::unregister('mailer');
\ No newline at end of file
laravel/ioc.php
View file @
5dd3ec6f
...
...
@@ -31,6 +31,19 @@ class IoC {
static
::
$registry
[
$name
]
=
compact
(
'resolver'
,
'singleton'
);
}
/**
* Unregister an object
*
* @param string $name
*/
public
static
function
unregister
(
$name
)
{
if
(
array_key_exists
(
$name
,
static
::
$registry
))
{
unset
(
static
::
$registry
[
$name
]);
unset
(
static
::
$singletons
[
$name
]);
}
}
/**
* Determine if an object has been registered in the container.
*
...
...
@@ -141,6 +154,7 @@ class IoC {
* @param string $type
* @param array $parameters
* @return mixed
* @throws \Exception
*/
protected
static
function
build
(
$type
,
$parameters
=
array
())
{
...
...
@@ -218,6 +232,7 @@ class IoC {
*
* @param ReflectionParameter
* @return default value
* @throws \Exception
*/
protected
static
function
resolveNonClass
(
$parameter
)
{
...
...
laravel/tests/cases/ioc.test.php
View file @
5dd3ec6f
...
...
@@ -28,6 +28,7 @@ class TestClassTwoForIoC
}
}
use
\Laravel\IoC
as
IoC
;
class
IoCTest
extends
PHPUnit_Framework_TestCase
{
...
...
@@ -150,4 +151,17 @@ class IoCTest extends PHPUnit_Framework_TestCase {
$this
->
assertEquals
(
42
,
$class_two
->
class_one
->
test_variable
);
}
public
function
testCanUnregisterRegistered
()
{
$testClass
=
'test'
;
IoC
::
register
(
$testClass
,
function
()
{});
$this
->
assertTrue
(
IoC
::
registered
(
$testClass
));
IoC
::
unregister
(
$testClass
);
$this
->
assertFalse
(
IoC
::
registered
(
$testClass
));
}
}
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