From e1a885de3d74c8cf0c6134929ed7d9c7738a64c4 Mon Sep 17 00:00:00 2001 From: Liviu Balan Date: Sat, 7 Apr 2018 19:32:24 +0300 Subject: [PATCH] Fix "class_exists" PHP function URL Change http://php.net/manual/en/function.class-exists().php to http://php.net/manual/en/function.class-exists.php --- doctrine/mapping_model_classes.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doctrine/mapping_model_classes.rst b/doctrine/mapping_model_classes.rst index 0186da91b0f..4eadefb5206 100644 --- a/doctrine/mapping_model_classes.rst +++ b/doctrine/mapping_model_classes.rst @@ -93,7 +93,7 @@ be adapted for your case:: } } -Note the :phpfunction:`class_exists()` check. This is crucial, as you do not want your +Note the :phpfunction:`class_exists` check. This is crucial, as you do not want your bundle to have a hard dependency on all Doctrine bundles but let the user decide which to use.