@@ -35,7 +35,7 @@ discard block |
||
| 35 | 35 | |
| 36 | 36 | private $indentLevel = 0; |
| 37 | 37 | /** @var string */ |
| 38 | - protected $content = '.. rst-class:: phpdoctorst' . PHP_EOL . PHP_EOL ; |
|
| 38 | + protected $content = '.. rst-class:: phpdoctorst' . PHP_EOL . PHP_EOL; |
|
| 39 | 39 | |
| 40 | 40 | public function getContent() { |
| 41 | 41 | return $this->content; |
@@ -58,7 +58,7 @@ discard block |
||
| 58 | 58 | } |
| 59 | 59 | |
| 60 | 60 | public function addFieldList($key, $value) { |
| 61 | - $this->addLine(':'.self::escape($key).':'); |
|
| 61 | + $this->addLine(':' . self::escape($key) . ':'); |
|
| 62 | 62 | $this->indent()->addMultiline($value, true)->unindent(); |
| 63 | 63 | return $this; |
| 64 | 64 | } |
@@ -47,7 +47,7 @@ |
||
| 47 | 47 | return; |
| 48 | 48 | } |
| 49 | 49 | if ($type === PhpDomainBuilder::SECTION_BEFORE_DESCRIPTION) { |
| 50 | - if($element instanceof Class_) { |
|
| 50 | + if ($element instanceof Class_) { |
|
| 51 | 51 | $modifiers = $element->isAbstract() ? 'abstract' : ''; |
| 52 | 52 | $modifiers = $element->isFinal() ? ' final' : $modifiers; |
| 53 | 53 | $builder->addLine(':php:`' . $modifiers . ' class ' . RstBuilder::escape($builder->getElement()->getName()) . ' {}`'); |
@@ -52,7 +52,7 @@ |
||
| 52 | 52 | /** @var Interface_ $interface */ |
| 53 | 53 | $interface = $builder->getElement(); |
| 54 | 54 | |
| 55 | - if(count($interface->getMethods()) > 0) { |
|
| 55 | + if (count($interface->getMethods()) > 0) { |
|
| 56 | 56 | $builder->addH3('Methods'); |
| 57 | 57 | foreach ($interface->getMethods() as $method) { |
| 58 | 58 | $args = ''; |
@@ -70,7 +70,7 @@ discard block |
||
| 70 | 70 | * @return mixed |
| 71 | 71 | */ |
| 72 | 72 | public static function getNamespace(Element $element) { |
| 73 | - return substr($element->getFqsen(), 0, strlen($element->getFqsen())-strlen('\\'. $element->getName())); |
|
| 73 | + return substr($element->getFqsen(), 0, strlen($element->getFqsen()) - strlen('\\' . $element->getName())); |
|
| 74 | 74 | //return str_replace('\\' . $element->getName(), '', $element->getFqsen()); |
| 75 | 75 | } |
| 76 | 76 | |
@@ -164,7 +164,7 @@ discard block |
||
| 164 | 164 | * @param Property $property |
| 165 | 165 | */ |
| 166 | 166 | private function addProperty(Property $property) { |
| 167 | - $modifiers = $property->isStatic() ? '' : ' static' ; |
|
| 167 | + $modifiers = $property->isStatic() ? '' : ' static'; |
|
| 168 | 168 | $this->beginPhpDomain('attr', $property->getVisibility() . $modifiers . ' ' . $property->getName()); |
| 169 | 169 | $docBlock = $property->getDocBlock(); |
| 170 | 170 | $this->addDocBlockDescription($property); |
@@ -239,10 +239,10 @@ discard block |
||
| 239 | 239 | $args .= self::escape($type) . '|'; |
| 240 | 240 | } |
| 241 | 241 | $args = substr($args, 0, -1) . ' '; |
| 242 | - if($argument->isVariadic()) { |
|
| 242 | + if ($argument->isVariadic()) { |
|
| 243 | 243 | $args .= '...'; |
| 244 | 244 | } |
| 245 | - if($argument->isByReference()) { |
|
| 245 | + if ($argument->isByReference()) { |
|
| 246 | 246 | $args .= '&'; |
| 247 | 247 | } |
| 248 | 248 | $args .= '$' . $argument->getName(); |
@@ -271,10 +271,10 @@ discard block |
||
| 271 | 271 | if ($param !== null) { |
| 272 | 272 | $typString = $param->getType(); |
| 273 | 273 | // Remove first \ to allow references |
| 274 | - if(0 === strpos($typString, '\\')) { |
|
| 274 | + if (0 === strpos($typString, '\\')) { |
|
| 275 | 275 | $typString = substr($typString, 1); |
| 276 | 276 | } |
| 277 | - $this->addMultiline(':param '.self::escape($typString).' $' . $argument->getName() . ': ' . $param->getDescription(), true); |
|
| 277 | + $this->addMultiline(':param ' . self::escape($typString) . ' $' . $argument->getName() . ': ' . $param->getDescription(), true); |
|
| 278 | 278 | } |
| 279 | 279 | } |
| 280 | 280 | foreach ($docBlock->getTags() as $tag) { |
@@ -290,8 +290,8 @@ discard block |
||
| 290 | 290 | * @param $fqsen string |
| 291 | 291 | * @return string |
| 292 | 292 | */ |
| 293 | - public static function getLink($type, $fqsen, $description='') { |
|
| 294 | - if($description !== '') { |
|
| 293 | + public static function getLink($type, $fqsen, $description = '') { |
|
| 294 | + if ($description !== '') { |
|
| 295 | 295 | return ':php:' . $type . ':`' . RstBuilder::escape($description) . '<' . RstBuilder::escape(substr($fqsen, 1)) . '>`'; |
| 296 | 296 | } |
| 297 | 297 | return ':php:' . $type . ':`' . RstBuilder::escape(substr($fqsen, 1)) . '`'; |
@@ -71,17 +71,17 @@ |
||
| 71 | 71 | $apiDocBuilder->setVerboseOutput(true); |
| 72 | 72 | $apiDocBuilder->setDebugOutput(true); |
| 73 | 73 | } |
| 74 | - if($input->getOption('public-only')) { |
|
| 74 | + if ($input->getOption('public-only')) { |
|
| 75 | 75 | $apiDocBuilder->addExtension(PublicOnlyExtension::class); |
| 76 | 76 | } |
| 77 | - if(!$input->getOption('show-private')) { |
|
| 77 | + if (!$input->getOption('show-private')) { |
|
| 78 | 78 | $apiDocBuilder->addExtension(NoPrivateExtension::class); |
| 79 | 79 | } |
| 80 | - if($input->getOption('element-toc')) { |
|
| 80 | + if ($input->getOption('element-toc')) { |
|
| 81 | 81 | $apiDocBuilder->addExtension(TocExtension::class); |
| 82 | 82 | } |
| 83 | 83 | |
| 84 | - if($input->getOption('repo-github') && $input->getOption('repo-base')) { |
|
| 84 | + if ($input->getOption('repo-github') && $input->getOption('repo-base')) { |
|
| 85 | 85 | $apiDocBuilder->addExtension(GithubLocationExtension::class, [ |
| 86 | 86 | $input->getOption('repo-base'), |
| 87 | 87 | $input->getOption('repo-github') |
@@ -202,7 +202,7 @@ discard block |
||
| 202 | 202 | * @param string $class name of the extension class |
| 203 | 203 | * @throws \Exception |
| 204 | 204 | */ |
| 205 | - public function addExtension($class, $arguments=[]) { |
|
| 205 | + public function addExtension($class, $arguments = []) { |
|
| 206 | 206 | $this->extensionNames[] = $class; |
| 207 | 207 | $this->extensionArguments[$class] = $arguments; |
| 208 | 208 | |
@@ -302,7 +302,7 @@ discard block |
||
| 302 | 302 | $this->log('Build indexes.'); |
| 303 | 303 | $namespaces = $this->project->getNamespaces(); |
| 304 | 304 | $namespaces['\\'] = $this->project->getRootNamespace(); |
| 305 | - usort($namespaces, function (Namespace_ $a, Namespace_ $b) { |
|
| 305 | + usort($namespaces, function(Namespace_ $a, Namespace_ $b) { |
|
| 306 | 306 | return strcmp($a->getFqsen(), $b->getFqsen()); |
| 307 | 307 | }); |
| 308 | 308 | /** @var Namespace_ $namespace */ |
@@ -37,7 +37,7 @@ |
||
| 37 | 37 | /** @var array */ |
| 38 | 38 | protected $arguments; |
| 39 | 39 | |
| 40 | - public function __construct(Project $project, $arguments=[]) { |
|
| 40 | + public function __construct(Project $project, $arguments = []) { |
|
| 41 | 41 | $this->project = $project; |
| 42 | 42 | $this->arguments = $arguments; |
| 43 | 43 | } |
@@ -64,13 +64,13 @@ |
||
| 64 | 64 | $url = $this->getGithubLink($filePath, $lineNumber); |
| 65 | 65 | print_r($filePath); |
| 66 | 66 | print_r($url); |
| 67 | - $builder->addFieldList('Source', '`' . $filePath. '#' . $lineNumber . ' <'.$url.'>`_'); |
|
| 67 | + $builder->addFieldList('Source', '`' . $filePath . '#' . $lineNumber . ' <' . $url . '>`_'); |
|
| 68 | 68 | $builder->addLine(); |
| 69 | 69 | } |
| 70 | 70 | } |
| 71 | 71 | |
| 72 | - private function getGithubLink($file, $line=1, $branch='master') { |
|
| 73 | - return $this->githubRepo . '/blob/'.$branch.'/'.$file.'#L' . $line; |
|
| 72 | + private function getGithubLink($file, $line = 1, $branch = 'master') { |
|
| 73 | + return $this->githubRepo . '/blob/' . $branch . '/' . $file . '#L' . $line; |
|
| 74 | 74 | } |
| 75 | 75 | |
| 76 | 76 | } |
| 77 | 77 | \ No newline at end of file |