Jump to content

Difficult problem, regarding syntax however.


matthewhaworth

Recommended Posts

Ok.  I have a factory that returns an object, however I want that object to send my data access object.. I don't know how to add arguments into factory produced classes.. look:

 

abstract class userFactory
{
    public static function getUser($levelname)
    {
        return new $levelname;
    }
}

 

Now I want to send the parameter ($db) to whatever $levelname produces.. how's that possible?  Should I just create a new method that sends it and that is called directly after the construct?

Link to comment
Share on other sites

abstract class userFactory
{
    public static function getUser($levelname)
    {
        return new $levelname($db);
    }
}

 

abstract class userFactory
{
    public static function getUser($levelname, $db)
    {
        return new $levelname($db);
    }
}

 

So, will that definitely work?

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.