Browse Source

phpdoc command skip classes that do not extend Object

tags/2.0.0-alpha
Carsten Brandt 11 years ago
parent
commit
1c9b9681a7
  1. 7
      build/controllers/PhpDocController.php

7
build/controllers/PhpDocController.php

@ -81,6 +81,11 @@ class PhpDocController extends Controller
$this->stderr("[ERR] Unable to create ReflectionClass for class: $className loaded class is not from file: $file\n", Console::FG_RED);
}
if (!$ref->isSubclassOf('yii\base\Object') && $className != 'yii\base\Object') {
$this->stderr("[INFO] Skipping class $className as it is not a subclass of yii\\base\\Object\n", Console::FG_BLUE, Console::BOLD);
return false;
}
$oldDoc = $ref->getDocComment();
$newDoc = $this->cleanDocComment($this->updateDocComment($oldDoc, $propertyDoc));
@ -103,7 +108,7 @@ class PhpDocController extends Controller
$this->stderr("[ERR] No @author found in class doc in file: $file\n", Console::FG_RED);
}
if ($oldDoc != $newDoc) {
if (trim($oldDoc) != trim($newDoc)) {
$fileContent = explode("\n", file_get_contents($file));
$start = $ref->getStartLine() - 2;

Loading…
Cancel
Save