mirror of
				https://github.com/yiisoft/yii2.git
				synced 2025-11-04 14:46:19 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			29 lines
		
	
	
		
			609 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			29 lines
		
	
	
		
			609 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
/**
 | 
						|
 * @link http://www.yiiframework.com/
 | 
						|
 * @copyright Copyright (c) 2008 Yii Software LLC
 | 
						|
 * @license http://www.yiiframework.com/license/
 | 
						|
 */
 | 
						|
 | 
						|
namespace yii\apidoc\renderers;
 | 
						|
 | 
						|
use Yii;
 | 
						|
use yii\apidoc\models\Context;
 | 
						|
 | 
						|
/**
 | 
						|
 * Base class for all API documentation renderers
 | 
						|
 *
 | 
						|
 * @author Carsten Brandt <mail@cebe.cc>
 | 
						|
 * @since 2.0
 | 
						|
 */
 | 
						|
abstract class ApiRenderer extends BaseRenderer
 | 
						|
{
 | 
						|
    /**
 | 
						|
     * Renders a given [[Context]].
 | 
						|
     *
 | 
						|
     * @param Context $context the api documentation context to render.
 | 
						|
     * @param $targetDir
 | 
						|
     */
 | 
						|
    abstract public function render($context, $targetDir);
 | 
						|
}
 |