Problem

Suppose you have a class user. You want to be able to return this user object to others so they can use it to extract information using getters. However, you don't want people to be able to readily set the internal state because the internal information should directly relate to a row in the database. Does it make sense to have protected mutators (setters) so that only an extended class could set the variables? Is this a bad practice, irrelevant, overkill or useless?

I have considered trying to limit __construct to one use ( I believe this is sometimes refereed to as a singleton pattern - although I am not sure if I understand entirely. )

I am an amateur programer, forgive any ignorance. Thanks.

Example:

<?php

    class user
    {

    private username;

    protected function set_username($username)
    {
        $this->username = $username;
    }

    public function get_username()
    {
        return $this->username;
    }

?>
link|improve this question
1  
private and protected states, is not made to add security to your code. – Nazariy Jan 13 at 7:23
feedback

3 Answers

up vote 2 down vote accepted

Depends. If nothing in particular needs to happen when the state is changed then you can leave the setters out altogether. Any subclass will have direct access to the properties that are set protected or looser.

If you need something to happen when the state changes (for example having a database UPDATE happen when the state changes) then the setters will make your life a lot easier, as the call to the database updating code be put in the setter. This means if you always go through the setter then the DB will always update when you change the object's state.

So in short, it depends.

link|improve this answer
feedback

If you have a constructor that accepts an id for instance, why would you want to have setters at all. There is no rule forcing you to give an object setters just because it has getters. If your usecase is constructing the object somewhere and after that only use it to extract data from it, simply create no setter at all.

Extending objects can manipulate the protected class variables itself so they don't require any form of setter as well. If you don't want the "outside world" to be able to set something to the class, don't allow it.

link|improve this answer
feedback

Your code is totaly fine and IMHO it encapsulates perfectly. Tt also supports loose coupling.

For easier use, you can add all needed (must have) members as constructor parameters.

Regarding the singleton pattern, use it with care. Users in common aren't singletons. Refer to Refactoring to Patterns (Joshua Kerievsky).

link|improve this answer
I am in favor of using a __construct rather than having many setters. However, can't the __construct be called from outside to simply change the variables? This would simply re-construct the class with information that does not map to the reality of what is held in the database -> (what I am thinking of aiming for). – Nicolas Oliver Feigenbaum Jan 13 at 7:38
1  
You can create multiple constructors as stated in the manual de.php.net/manual/en/language.oop5.decon.php – tuergeist Jan 13 at 10:37
feedback

Your Answer

 
or
required, but never shown

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