Skip to content

Instantly share code, notes, and snippets.

@mrclay
Created May 2, 2014 14:38
Show Gist options
  • Save mrclay/d03e757ec63d0bffffd7 to your computer and use it in GitHub Desktop.
Save mrclay/d03e757ec63d0bffffd7 to your computer and use it in GitHub Desktop.
In phpDocumentor, a "used by" relationship should be documented in bar() and Bar::f()
<?php
/**
* @uses bar()
*/
function foo() {}
function bar() {}
class Foo {
/**
* @uses Bar::f()
*/
function f() {}
}
class Bar {
function f() {}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment