代码规范化

This commit is contained in:
thinkphp
2016-08-09 10:35:06 +08:00
parent 8b147f6895
commit 131aaf1357
18 changed files with 60 additions and 75 deletions

View File

@@ -64,7 +64,7 @@ class Output
*/
public function setVerbosity($level)
{
$this->verbosity = (int)$level;
$this->verbosity = (int) $level;
}
/**
@@ -99,7 +99,7 @@ class Output
{
$descriptor = new Descriptor();
$options = array_merge([
'raw_text' => false
'raw_text' => false,
], $options);
$descriptor->describe($this, $object, $options);
@@ -114,4 +114,4 @@ class Output
}
}
}
}