Git Product home page Git Product logo

Comments (9)

l3pp4rd avatar l3pp4rd commented on May 24, 2024

hi, are there any docs on syntax changes, behavior or something? I would not like to create another branch :)

from doctrineextensions.

stof avatar stof commented on May 24, 2024

The issue is that the way to configure the reader changed. As you configure it inside the library instead of injecting it, the place where you register it needs to be changed. For instance, there is no changes in the ORM itself as the configuration of the driver is not done in the ORM but before injecting the driver (so the change is in the ORM config for each user).
And then, the change is needed in the classes where annotations are used but this is for each user when updating.

from doctrineextensions.

schmittjoh avatar schmittjoh commented on May 24, 2024

I haven't used this library, but it would be good if you would allow people to inject the annotation reader that they want to use to benefit from caching and not having annotations read multiple times by different readers.

from doctrineextensions.

l3pp4rd avatar l3pp4rd commented on May 24, 2024

I see that new reader breaks BC for ORM since Doctrine\ORM\Configuration::newDefaultAnnotationDriver() will fail to initialize by calling unidentified method: setDefaultAnnotationNamespace is everyone OK with that? I understand that symfony2 does not use this method to create driver chain and so on, but it leaves a hole since ORM provides this method.

Is it possible to add namespace alias, like before, if yes, how can I do it?

from doctrineextensions.

stof avatar stof commented on May 24, 2024

You don't add namespace aliases. The annotations depends of the use statement. This is the way to do to keep the annotations separated from others:

use Doctrine\ORM\Mapping as ORM;

/**
 * @ORM\Entity
 */

from doctrineextensions.

stof avatar stof commented on May 24, 2024

And with the new implementation, you don't need to add a new annotation reader. You can simply reuse the same. And this is another reason why allowing to inject the reader would be a good idea: Sf2 now uses a single annotation reader for all parts of the framework, so annotations are parsed only once and then cached and used by all services needing them.

from doctrineextensions.

l3pp4rd avatar l3pp4rd commented on May 24, 2024

@schmittjoh have you tested it? I'm trying a simple reading of annotations and $reader->getClassAnnotations($class); returns numerically indexed array of annotations found. The problem is ORM depends on class name as a key of each array element. Am I missing something? using ORM from master branch and common3.0.x branch..

from doctrineextensions.

schmittjoh avatar schmittjoh commented on May 24, 2024

If you rely on indexes you need to use the "IndexedReader" which is in the
DoctrineBundle.

On Sun, May 22, 2011 at 6:14 PM, l3pp4rd <
[email protected]>wrote:

@schmittjoh have you tested it? I'm trying a simple reading of annotations
and $reader->getClassAnnotations($class); returns numerically indexed
array of annotations found. The problem is ORM depends on class name as a
key of each array element. Am I missing something? using ORM from master
branch and common3.0.x branch..

Reply to this email directly or view it on GitHub:
https://github.com/l3pp4rd/DoctrineExtensions/issues/54#comment_1217682

from doctrineextensions.

l3pp4rd avatar l3pp4rd commented on May 24, 2024

@stof I have currently made annotation reader injectable to the listener, can you test if it is compatible? since the namespace alias will not be available anymore, the documentation should be also available for symfony2 usage

from doctrineextensions.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.