add example of indexed definitions
parent
8801edb7a2
commit
6a41a7f0dc
|
@ -16,21 +16,30 @@ class Index implements ReadableIndex, \Serializable
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* An associative array that maps namespaces to
|
* An associative array that maps namespaces to
|
||||||
* an associative array that maps fully qualified symbol names to global Definitions
|
* an associative array that maps fully qualified symbol names
|
||||||
|
* to global Definitions, e.g. :
|
||||||
|
* [
|
||||||
|
* 'Psr\Log\LoggerInterface' => [
|
||||||
|
* 'Psr\Log\LoggerInterface->log()' => $definition,
|
||||||
|
* 'Psr\Log\LoggerInterface->debug()' => $definition,
|
||||||
|
* ],
|
||||||
|
* ]
|
||||||
*
|
*
|
||||||
* @var array
|
* @var array
|
||||||
*/
|
*/
|
||||||
private $namespaceDefinitions = [];
|
private $namespaceDefinitions = [];
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* An associative array that maps fully qualified symbol names to global Definitions
|
* An associative array that maps fully qualified symbol names
|
||||||
|
* to global Definitions
|
||||||
*
|
*
|
||||||
* @var Definition[]
|
* @var Definition[]
|
||||||
*/
|
*/
|
||||||
private $globalDefinitions = [];
|
private $globalDefinitions = [];
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* An associative array that maps fully qualified symbol names to arrays of document URIs that reference the symbol
|
* An associative array that maps fully qualified symbol names
|
||||||
|
* to arrays of document URIs that reference the symbol
|
||||||
*
|
*
|
||||||
* @var string[][]
|
* @var string[][]
|
||||||
*/
|
*/
|
||||||
|
|
Loading…
Reference in New Issue