Content deleted Content added
Stevebroshar (talk | contribs) →Nim: Use line/block consistently |
Stevebroshar (talk | contribs) use line instead of inline |
||
Line 717:
====PHP====
Comments in [[PHP]] can be either
<syntaxhighlight lang="php">
/**
* This class contains a sample documentation.
* @author Unknown
*/
Line 730 ⟶ 727:
class MyAttribute {
const VALUE = 'value';
//
private $value;
#
public function __construct($value = null) {
$this->value = $value;
}
}
</syntaxhighlight>
|