Learning OOP . . . How can I use the variable $bar that is passed to the instance method in Do_Stuff_1 and Do_Stuff_2?
class foo{
public function __construct{} {
}
public static function instance( $bar ) {
}
public static function Do_Stuff_1() {
// Make $bar available here.
}
public function Do_Stuff_2() {
// Make $bar available here.
}
}