I remember reading that in Doctrine 2 models, I should not set properties/fields public. How then would you expose these fields? The sandbox used get*() & set*() methods. Is that the best idea? Its very cumbersome. Using magic methods __get() __set() will make things similar to setting fields public?

Whats your recommendation?

link|improve this question

feedback

5 Answers

up vote 6 down vote accepted

Here's why you can't use public properties: How can public fields “break lazy loading” in Doctrine 2?

You are correct that __get() and __set() can make accessing the protected/private fields easier.

Here's a simple example:

public function __get($name)
{
  if(property_exists($this, $name)){
    return $this->$name;
  }
}

Of course that gives access to all the properties. You could put that in a class that all your entities extended, then define non-assessable fields as private. Or you could use an array to determine which properties should be accessible:$this->accessable = array('name', 'age')

There are plenty of ways to keep all properties protected and still have a reasonably easy way to get/set them.

link|improve this answer
2  
I would advise against using __get and __set in your entities just because you are too lazy to write them yourself. There are instances where it might make sense to use magic method, but that depends on the entities purpose. Most IDEs can generate them for you. – Cobby Feb 10 '11 at 7:17
2  
@Cobby Official doctrine2 documentation states: ...We therefore urge you to map only private and protected properties on entities and use getter methods or magic __get() to access them. doctrine-project.org/docs/orm/2.0/en/reference/… – Petr Peller May 20 '11 at 12:08
1  
@Cobby Have you ever heard about inheritance? I still can't see a reason why is it better (automatically or not) write hundreds lines of code than write about 20 in a BaseEntity class. – Petr Peller May 22 '11 at 11:55
You don't have to write code, IDEs generate it. Otherwise it takes about 3 minutes to type it up yourself. – Cobby May 22 '11 at 23:53
feedback

If some info should be made public, define a getter for it. If it's modifiable, add a setter (even better, add a fluent setter!).

API's are cleaner this way, with no magic involved. I don't like magic in my code.

Just my two cents :)


By "fluent setter" I meant one implementing the fluent interface pattern.

link|improve this answer
What's a 'fluent setter'? Can you edit your answer and add a link or something? – rjmunro Dec 16 '11 at 11:41
Just updated with fluent interface pattern link – xPheRe Dec 19 '11 at 10:00
1  
So basically a setter that ends return $this; so you can do jQuery-like chaining: $object->setName('name')->setCode('code');. Nice idea. It would be good to add this to the setters made by the orm:generate-entities tool. – rjmunro Dec 19 '11 at 10:53
feedback

Yes getter and setter methods are the way to access your data. They are a little cumbersome which is why some people do not like doctrine2 or hibernate. But you only need to do it once for each entity and then they are very flexible to produce the output formatting you are hoping for. You can use the cli to do some of this for you. But when you get them rolling I don't find it to big a deal. Especially since you only do this to the properties you need.

Cheers

link|improve this answer
feedback

Rather than having seperate getter and setters, or even using the magic functions.. Is there problem with having something like this in the class

public function Set($attrib, $value)
{
    $this->$attrib = $value;    
}

public function Get($attrib)
{
    return $this->$attrib;
}   

It makes it much easy to access the attributes and means they be dynamically set from key-pair arrays.. any comments? or alternative suggestions?

link|improve this answer
feedback

Doctine 2 provides a [command line tool][1] to generate basic entity classes

use the following to get a basic Entity class definition from your mapping, complete with getter/setter functions for each property:

path/to/doctrine_cli orm:generate-entities --generate-methods=true path/to/entities/

You're still responsible for modifying each getter/setter to ensure that they are the proper datatype, as the getter/setter methods generated for the Entity don't do any type casting/converting.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.