Is my use of @global correct in the following case?
// File: my_special_class.php
<?php
...
class MySpecialClass {
function display_template() {
// Following variable will be available from context of 'template.php':
$instance = array( 'title' => 'Test Page' );
include('template.php');
}
}
// File: template.php
<?php
/**
* Template for ...
*
* @copyright Me
* @version 1
*
* @global array $instance Template instance parameters.
*/
?>
<h1><?php echo $instance['title']; ?></h1>
Is there a standard way of documenting this?
It is primarily a reminder for those reading the code, but it would be useful if this information was also present under phpDocumentor generated documentation.