mirror of
https://github.com/helix-editor/helix
synced 2026-08-06 15:02:59 +02:00
10 lines
181 B
PHP
10 lines
181 B
PHP
<?php
|
|
class Box {
|
|
// ^ @constructor
|
|
function method($count) {
|
|
// ^ @function.method
|
|
return $obj->doThing();
|
|
// ^ @function.method
|
|
}
|
|
}
|