You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
451 B
25 lines
451 B
3 years ago
|
<?php
|
||
|
/**
|
||
|
* autodoc
|
||
|
*
|
||
|
* Permet l'extraction des informations d'un répertoire
|
||
|
*/
|
||
|
|
||
|
namespace autodoc\Plugin\Core\Compiler\Pass\VcsInformations;
|
||
|
|
||
|
/**
|
||
|
* Extraction d'informations d'un dossier utilisant un Vcs
|
||
|
**/
|
||
|
class None extends VcsInformationsAbstract
|
||
|
{
|
||
|
|
||
|
/**
|
||
|
* {@inheritDoc}
|
||
|
**/
|
||
|
public function extractWithDirectory($dir) {
|
||
|
$this->clear();
|
||
|
$this->setUrlPath( $dir );
|
||
|
$this->setUrlRoot( $dir );
|
||
|
}
|
||
|
}
|