From 5a160c51f73b75ecf15c1704ddc1b59973949f8b Mon Sep 17 00:00:00 2001 From: Bernhard Schussek Date: Fri, 10 Jan 2014 10:48:35 +0100 Subject: [PATCH] Added note about deprecated interfaces/classes --- contributing/code/bc.rst | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/contributing/code/bc.rst b/contributing/code/bc.rst index 58017243e0c..596967a719f 100644 --- a/contributing/code/bc.rst +++ b/contributing/code/bc.rst @@ -61,6 +61,13 @@ Interfaces or interface methods tagged with ``@internal`` are meant for internal use in Symfony only. You should never use nor implement them. +Deprecated Interfaces +..................... + +Interfaces or interface methods tagged with ``@deprecated`` will be removed in +a future Symfony version. You should never use nor implement them. + + Safe Operations ............... @@ -136,6 +143,13 @@ Classes, properties and class methods tagged with ``@internal`` are meant for internal use in Symfony only. You should never use nor extend them. +Deprecated Classes +.................. + +Classes, properties and class methods tagged with ``@deprecated`` will be +removed in a future Symfony version. You should never use nor extend them. + + Safe Operations ...............