li3_docs\models\Symbols::_harvestClass()

protected static method

Harvests class information from the specified file.

Parameters

  • string $fileData

Returns

object

Source

	protected static function _harvestClass($fileData) {
		return static::create(array(
			'name' => array_pop(explode("\\", $fileData['identifier'])),
			'type' => 'class',
			'class' => $fileData['identifier'],
			'description' => $property['description']
		));
	}