Skip to content

Commit

Permalink
Merge branch 'master' into develop
Browse files Browse the repository at this point in the history
  • Loading branch information
abbadon1334 committed Jul 11, 2019
2 parents e9a0e59 + 105c520 commit 3d53917
Showing 1 changed file with 2 additions and 6 deletions.
8 changes: 2 additions & 6 deletions src/ApiDocBuilder.php
Original file line number Diff line number Diff line change
Expand Up @@ -201,11 +201,13 @@ private function parseFiles()
/*
* Go though interfaces/classes/functions of files and build documentation
*/

$this->parseInterfaces($file);
$this->parseClasses($file);
$this->parseTraits($file);
$this->parseFunctions($file);
$this->parseConstants($file);

}
}

Expand Down Expand Up @@ -287,8 +289,6 @@ public function addExtension($class, $arguments = [])

/**
* @param \phpDocumentor\Reflection\Php\File $file
*
* @return array
*/
private function parseInterfaces(\phpDocumentor\Reflection\Php\File $file): void
{
Expand All @@ -309,8 +309,6 @@ private function parseInterfaces(\phpDocumentor\Reflection\Php\File $file): void

/**
* @param \phpDocumentor\Reflection\Php\File $file
*
* @return array
*/
private function parseClasses(\phpDocumentor\Reflection\Php\File $file): void
{
Expand Down Expand Up @@ -351,8 +349,6 @@ private function parseTraits(\phpDocumentor\Reflection\Php\File $file): void

/**
* @param \phpDocumentor\Reflection\Php\File $file
*
* @return bool|string
*/
private function parseFunctions(\phpDocumentor\Reflection\Php\File $file) :void
{
Expand Down

0 comments on commit 3d53917

Please sign in to comment.