Skip to content

Commit 8c922f3

Browse files
committed
Update to Symfony 3
1 parent 0a4dc8b commit 8c922f3

3 files changed

Lines changed: 95 additions & 39 deletions

File tree

composer.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,10 @@
1414
],
1515
"minimum-stability": "stable",
1616
"require": {
17-
"php": ">=5.3.3",
18-
"symfony/yaml": "~2.6",
19-
"symfony/console": "~2.6",
20-
"symfony/finder": "~2.6",
17+
"php": ">=5.5.9",
18+
"symfony/yaml": "~3.0",
19+
"symfony/console": "~3.0",
20+
"symfony/finder": "~3.0",
2121
"battye/php-array-parser": "~1.0"
2222
},
2323
"require-dev": {

composer.lock

Lines changed: 51 additions & 35 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/Phpbb/TranslationValidator/Output/Output.php

Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -213,4 +213,44 @@ public function getMessageCount($type)
213213
}
214214
return 0;
215215
}
216+
217+
/**
218+
* Returns whether verbosity is quiet (-q).
219+
*
220+
* @return bool true if verbosity is set to VERBOSITY_QUIET, false otherwise
221+
*/
222+
public function isQuiet()
223+
{
224+
// TODO: Implement isQuiet() method.
225+
}
226+
227+
/**
228+
* Returns whether verbosity is verbose (-v).
229+
*
230+
* @return bool true if verbosity is set to VERBOSITY_VERBOSE, false otherwise
231+
*/
232+
public function isVerbose()
233+
{
234+
// TODO: Implement isVerbose() method.
235+
}
236+
237+
/**
238+
* Returns whether verbosity is very verbose (-vv).
239+
*
240+
* @return bool true if verbosity is set to VERBOSITY_VERY_VERBOSE, false otherwise
241+
*/
242+
public function isVeryVerbose()
243+
{
244+
// TODO: Implement isVeryVerbose() method.
245+
}
246+
247+
/**
248+
* Returns whether verbosity is debug (-vvv).
249+
*
250+
* @return bool true if verbosity is set to VERBOSITY_DEBUG, false otherwise
251+
*/
252+
public function isDebug()
253+
{
254+
// TODO: Implement isDebug() method.
255+
}
216256
}

0 commit comments

Comments
 (0)