Page MenuHomec4science

Phobject.php
No OneTemporary

File Metadata

Created
Wed, Nov 27, 11:26

Phobject.php

<?php
abstract class Phobject {
public function __set($name, $value) {
throw new DomainException(
"Attempted write to undeclared property ".get_class($this)."::\$$name. ".
"This is an application error, please report it at ".
"https://secure.phabricator.com/maniphest/task/create/");
}
}

Event Timeline