Cleaning up description of the BC Break
This commit is contained in:
parent
7c2e5ae5b2
commit
b67140f73c
1 changed files with 26 additions and 5 deletions
31
UPGRADE.md
31
UPGRADE.md
|
@ -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
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue