1
0
Fork 0
mirror of synced 2025-04-03 13:23:37 +03:00

Cleaning up description of the BC Break

This commit is contained in:
Marco Pivetta 2012-07-08 16:49:54 +02:00
parent 7c2e5ae5b2
commit b67140f73c

View file

@ -1,11 +1,32 @@
# Upgrade to 2.3 # Upgrade to 2.3
## Configuration ## Configuration *BC Break*
`Doctrine\ORM\Configuration#newDefaultAnnotationDriver` has been changed to reflect latest changes in Doctrine\Common. The default annotation syntax has been changed from `@Entity` to `@ORM\Entity`. If you still want to use the simplified
If you use it to have an AnnotationDriver configured with a SimpleAnnotationReader in your projects, you should from now version, you should use `Doctrine\Common\Annotations\SimpleAnnotationReader` for your AnnotationDriver or call
on call `newDefaultAnnotationDriver` with its second parameter set to `true`. Otherwise, the default consumed reader `Doctrine\ORM\Configuration#newDefaultAnnotationDriver` with its second parameter set to `true`.
will be the AnnotationReader, which uses the `@Namespace\AnnotationName` syntax.
* before:
```php
<?php
/** @Entity */
class MyEntity
{
}
```
* after:
```php
<?php
use Doctrine\ORM\Mapping as ORM;
/** @ORM\Entity */
class MyEntity
{
}
```
## EntityGenerator add*() method generation ## EntityGenerator add*() method generation