Constructor.
string $class The name of the class this member is defined on:
string $name The name of the member:
string $property The property the member belongs to:
public function __construct($class, $name, $property) {
$this->class = $class;
$this->name = $name;
$this->property = $property;
}