mirror of
https://github.com/yiisoft/yii2.git
synced 2025-12-01 06:59:29 +08:00
many phpcs fixes
This commit is contained in:
@@ -33,15 +33,15 @@ class InterfaceDoc extends TypeDoc
|
||||
return;
|
||||
}
|
||||
|
||||
foreach($reflector->getParentInterfaces() as $interface) {
|
||||
foreach ($reflector->getParentInterfaces() as $interface) {
|
||||
$this->parentInterfaces[] = ltrim($interface, '\\');
|
||||
}
|
||||
|
||||
foreach($this->methods as $method) {
|
||||
foreach ($this->methods as $method) {
|
||||
$method->isAbstract = true;
|
||||
}
|
||||
|
||||
// interface can not have properties
|
||||
$this->properties = null;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user