Skip to content

Commit 386fa63

Browse files
committed
Merge branch '2.4' into 2.5
* 2.4: Remove Spaceless Blocks From Twig Templates Validate locales sets intos translator Fix UserPassword validator translation Remove Spaceless Blocks from Twig Form Templates fixed typo [HttpFoundation] Fix to prevent magic bytes injection in JSONP responses (Prevents CVE-2014-4671) added regression test fix issue #8171 on configuration tree for twig extension -- pairing up with @cordoval [HttpFoundation] Fix wrong assertion in Response test [Upgrade] Fixed markdown syntax [2.3][Form] Cleanup & fix phpdocs Added verbosity methods Conflicts: src/Symfony/Component/Form/FormError.php
2 parents 973654b + 29ef7af commit 386fa63

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)