From 814ddff98507f63738c76de076b508ef52f64335 Mon Sep 17 00:00:00 2001 From: Matthieu Napoli Date: Wed, 9 Oct 2013 22:49:43 +0200 Subject: [PATCH] Change log --- change-log.md | 2 ++ src/DI/Definition/Definition.php | 2 -- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/change-log.md b/change-log.md index 50a2a1fe6..f28600775 100644 --- a/change-log.md +++ b/change-log.md @@ -5,12 +5,14 @@ BC-breaks: * XML and JSON definitions have been removed +* `ContainerSingleton` has been removed All changes: * [#115](https://github.com/mnapoli/PHP-DI/issues/115) Added `Container::has()` * [#110](https://github.com/mnapoli/PHP-DI/issues/110) XML definitions are not supported anymore * [#122](https://github.com/mnapoli/PHP-DI/issues/122) JSON definitions are not supported anymore +* `ContainerSingleton` has finally been removed ## 3.4 diff --git a/src/DI/Definition/Definition.php b/src/DI/Definition/Definition.php index bb8a96e34..e43867de2 100644 --- a/src/DI/Definition/Definition.php +++ b/src/DI/Definition/Definition.php @@ -16,7 +16,6 @@ */ interface Definition { - /** * Returns the name of the entry in the container * @@ -46,5 +45,4 @@ public function isCacheable(); * @return bool */ public static function isMergeable(); - }