<?php class Person { /** * @var string */ public $name; /** * @param string */ public function __construct($name) { $this->name = $name; } /** * @return string */ public function getName() { return $this->name; } } $person = new Person(1000); var_dump($person); $anotherPerson = new Person($person); var_dump($anotherPerson);
You have javascript disabled. You will not be able to edit any code.