You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hit `<Leader>cog` and you will be prompted if you want only getters for existing properties
322
+
323
+
```php
324
+
<?php
325
+
326
+
class Foo {
327
+
private $bar;
328
+
329
+
public function getBar()
330
+
{
331
+
return $this->bar;
332
+
}
333
+
}
334
+
```
335
+
304
336
### Document all
305
337
306
338
`<Leader>da` will call your documentation plugin (by default Php Documentor for vim https://github.com/tobyS/pdv) for every uncommented classes, methods, functions and properties.
0 commit comments