Skip to content

Commit 37fac3e

Browse files
atailouloutefabpot
authored andcommitted
[Console] fixed PHPDoc
1 parent f15b630 commit 37fac3e

File tree

3 files changed

+25
-2
lines changed

3 files changed

+25
-2
lines changed

src/Symfony/Component/Console/Helper/TableSeparator.php

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,7 @@
1919
class TableSeparator extends TableCell
2020
{
2121
/**
22-
* @param string $value
23-
* @param array $options
22+
* @param array $options
2423
*/
2524
public function __construct(array $options = array())
2625
{

src/Symfony/Component/Console/Output/NullOutput.php

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -73,21 +73,33 @@ public function getVerbosity()
7373
return self::VERBOSITY_QUIET;
7474
}
7575

76+
/**
77+
* {@inheritdoc}
78+
*/
7679
public function isQuiet()
7780
{
7881
return true;
7982
}
8083

84+
/**
85+
* {@inheritdoc}
86+
*/
8187
public function isVerbose()
8288
{
8389
return false;
8490
}
8591

92+
/**
93+
* {@inheritdoc}
94+
*/
8695
public function isVeryVerbose()
8796
{
8897
return false;
8998
}
9099

100+
/**
101+
* {@inheritdoc}
102+
*/
91103
public function isDebug()
92104
{
93105
return false;

src/Symfony/Component/Console/Output/Output.php

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -94,21 +94,33 @@ public function getVerbosity()
9494
return $this->verbosity;
9595
}
9696

97+
/**
98+
* {@inheritdoc}
99+
*/
97100
public function isQuiet()
98101
{
99102
return self::VERBOSITY_QUIET === $this->verbosity;
100103
}
101104

105+
/**
106+
* {@inheritdoc}
107+
*/
102108
public function isVerbose()
103109
{
104110
return self::VERBOSITY_VERBOSE <= $this->verbosity;
105111
}
106112

113+
/**
114+
* {@inheritdoc}
115+
*/
107116
public function isVeryVerbose()
108117
{
109118
return self::VERBOSITY_VERY_VERBOSE <= $this->verbosity;
110119
}
111120

121+
/**
122+
* {@inheritdoc}
123+
*/
112124
public function isDebug()
113125
{
114126
return self::VERBOSITY_DEBUG <= $this->verbosity;

0 commit comments

Comments
 (0)