Skip to content

Commit d644346

Browse files
committed
Added verbosity methods
1 parent a5d3e92 commit d644346

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

Output/NullOutput.php

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -74,6 +74,26 @@ public function getVerbosity()
7474
{
7575
return self::VERBOSITY_QUIET;
7676
}
77+
78+
public function isQuiet()
79+
{
80+
return true;
81+
}
82+
83+
public function isVerbose()
84+
{
85+
return false;
86+
}
87+
88+
public function isVeryVerbose()
89+
{
90+
return false;
91+
}
92+
93+
public function isDebug()
94+
{
95+
return false;
96+
}
7797

7898
/**
7999
* {@inheritdoc}

0 commit comments

Comments
 (0)