<?phpclass Bedroom { private $action; function __construct() { $this->action = 'fun'; }}$br = new Bedroom();echo $br->action. "\n";?>