« Programmation PHP/Commentaires » : différence entre les versions

Contenu supprimé Contenu ajouté
Ligne 50 :
Autre exemple :
<syntaxhighlight lang=php>
class MyEntity
{
/** @var int|null */
private $id;
Ligne 60 ⟶ 62 :
return $this->id;
}
}
</syntaxhighlight>