File tree Expand file tree Collapse file tree 1 file changed +14
-6
lines changed Expand file tree Collapse file tree 1 file changed +14
-6
lines changed Original file line number Diff line number Diff line change @@ -238,12 +238,20 @@ in a number of different formats including YAML, XML or directly inside the
238
238
239
239
.. tip ::
240
240
241
- When using another library or program (ie. Doxygen) that uses annotations,
242
- you must use the @IgnoreAnnotation annotation to indicate which annotations
243
- Symfony and Doctrine should ignore. This annotation should be placed in the
244
- comment block of the class it applies to. Failing to do so may result in an
245
- Exception being thrown.
246
- Example: @IgnoreAnnotation("fn") will prevent "@fn ..." from throwing an Exception.
241
+ When using another library or program (ie. Doxygen) that uses annotations,
242
+ you must use the ``@IgnoreAnnotation `` annotation to indicate which annotations
243
+ Symfony and Doctrine should ignore. This annotation should be placed in the
244
+ comment block of the class it applies to. Failing to do so may result
245
+ in an exception being thrown.
246
+
247
+ For example, to prevent the ``@fn `` annotation from throwing an exception,
248
+ add the following::
249
+
250
+ /**
251
+ * @IgnoreAnnotation("fn")
252
+ *
253
+ */
254
+ class Product
247
255
248
256
Doctrine allows you to choose from a wide variety of different field types,
249
257
each with their own options. For information on the available field types,
You can’t perform that action at this time.
0 commit comments