li3_docs\models\Symbols::_harvestMethods()

protected static method

Harvests method meta data from the specified file.

Parameters

  • string $fileData

Returns

array

Source

	protected static function _harvestMethods($fileData) {
		$results = array();

		foreach ($fileData['methods'] as $method) {
			$results[] = static::create(array(
				'name' => $method->name,
				'type' => 'method',
				'class' => $fileData['identifier'],
				'description' => $method->getDocComment()
			));
		}
		return $results;
	}