Code Monkey home page Code Monkey logo

Comments (1)

ramsey avatar ramsey commented on May 26, 2024

Hi! I didn't write that article, but I took a look at it, and the EntityIdTrait listed defines the $id property as protected. That's what this error means. In your Deuda class, if you change $id from private to protected, it should work.

Alternately, in the EntityIdTrait, if you change it from protected to private, it should also work.

Since the visibility differs, they're considered incompatible definitions, and since the PHP interpreter actually includes at compile time the trait's code as part of the class that includes the trait, it appears (to the interpreter) that you're defining $id twice. Since the trait defines both the $id and $uuid properties, there's no need to also define them in Deuda; they're technically already part of Deuda, as far as the interpreter is concerned.

Hope this helps!

from uuid-doctrine.

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.