Skip to content

Commit

Permalink
Removed all those spaces after @author that were bothering me so…
Browse files Browse the repository at this point in the history
  • Loading branch information
kriswallsmith authored and fabpot committed Oct 18, 2010
1 parent 96d0105 commit eb5d824
Show file tree
Hide file tree
Showing 25 changed files with 25 additions and 25 deletions.
2 changes: 1 addition & 1 deletion Application.php
Expand Up @@ -40,7 +40,7 @@
* $app->addCommand(new SimpleCommand());
* $app->run();
*
* @author Fabien Potencier <fabien.potencier@symfony-project.com>
* @author Fabien Potencier <fabien.potencier@symfony-project.com>
*/
class Application
{
Expand Down
2 changes: 1 addition & 1 deletion Command/Command.php
Expand Up @@ -21,7 +21,7 @@
/**
* Base class for all commands.
*
* @author Fabien Potencier <fabien.potencier@symfony-project.com>
* @author Fabien Potencier <fabien.potencier@symfony-project.com>
*/
class Command
{
Expand Down
2 changes: 1 addition & 1 deletion Command/HelpCommand.php
Expand Up @@ -21,7 +21,7 @@
/**
* HelpCommand displays the help for a given command.
*
* @author Fabien Potencier <fabien.potencier@symfony-project.com>
* @author Fabien Potencier <fabien.potencier@symfony-project.com>
*/
class HelpCommand extends Command
{
Expand Down
2 changes: 1 addition & 1 deletion Command/ListCommand.php
Expand Up @@ -21,7 +21,7 @@
/**
* ListCommand displays the list of all available commands for the application.
*
* @author Fabien Potencier <fabien.potencier@symfony-project.com>
* @author Fabien Potencier <fabien.potencier@symfony-project.com>
*/
class ListCommand extends Command
{
Expand Down
2 changes: 1 addition & 1 deletion Helper/DialogHelper.php
Expand Up @@ -16,7 +16,7 @@
/**
* The Dialog class provides helpers to interact with the user.
*
* @author Fabien Potencier <fabien.potencier@symfony-project.com>
* @author Fabien Potencier <fabien.potencier@symfony-project.com>
*/
class DialogHelper extends Helper
{
Expand Down
2 changes: 1 addition & 1 deletion Helper/FormatterHelper.php
Expand Up @@ -14,7 +14,7 @@
/**
* The Formatter class provides helpers to format messages.
*
* @author Fabien Potencier <fabien.potencier@symfony-project.com>
* @author Fabien Potencier <fabien.potencier@symfony-project.com>
*/
class FormatterHelper extends Helper
{
Expand Down
2 changes: 1 addition & 1 deletion Helper/Helper.php
Expand Up @@ -14,7 +14,7 @@
/**
* Helper is the base class for all helper classes.
*
* @author Fabien Potencier <fabien.potencier@symfony-project.com>
* @author Fabien Potencier <fabien.potencier@symfony-project.com>
*/
abstract class Helper implements HelperInterface
{
Expand Down
2 changes: 1 addition & 1 deletion Helper/HelperInterface.php
Expand Up @@ -14,7 +14,7 @@
/**
* HelperInterface is the interface all helpers must implement.
*
* @author Fabien Potencier <fabien.potencier@symfony-project.com>
* @author Fabien Potencier <fabien.potencier@symfony-project.com>
*/
interface HelperInterface
{
Expand Down
2 changes: 1 addition & 1 deletion Helper/HelperSet.php
Expand Up @@ -16,7 +16,7 @@
/**
* HelperSet represents a set of helpers to be used with a command.
*
* @author Fabien Potencier <fabien.potencier@symfony-project.com>
* @author Fabien Potencier <fabien.potencier@symfony-project.com>
*/
class HelperSet
{
Expand Down
2 changes: 1 addition & 1 deletion Input/ArgvInput.php
Expand Up @@ -31,7 +31,7 @@
* the same rules as the argv one. It's almost always better to use the
* `StringInput` when you want to provide your own input.
*
* @author Fabien Potencier <fabien.potencier@symfony-project.com>
* @author Fabien Potencier <fabien.potencier@symfony-project.com>
*
* @see http://www.gnu.org/software/libc/manual/html_node/Argument-Syntax.html
* @see http://www.opengroup.org/onlinepubs/009695399/basedefs/xbd_chap12.html#tag_12_02
Expand Down
2 changes: 1 addition & 1 deletion Input/ArrayInput.php
Expand Up @@ -18,7 +18,7 @@
*
* $input = new ArrayInput(array('name' => 'foo', '--bar' => 'foobar'));
*
* @author Fabien Potencier <fabien.potencier@symfony-project.com>
* @author Fabien Potencier <fabien.potencier@symfony-project.com>
*/
class ArrayInput extends Input
{
Expand Down
2 changes: 1 addition & 1 deletion Input/Input.php
Expand Up @@ -20,7 +20,7 @@
* * `StringInput`: The input is provided as a string
* * `ArrayInput`: The input is provided as an array
*
* @author Fabien Potencier <fabien.potencier@symfony-project.com>
* @author Fabien Potencier <fabien.potencier@symfony-project.com>
*/
abstract class Input implements InputInterface
{
Expand Down
2 changes: 1 addition & 1 deletion Input/InputArgument.php
Expand Up @@ -14,7 +14,7 @@
/**
* Represents a command line argument.
*
* @author Fabien Potencier <fabien.potencier@symfony-project.com>
* @author Fabien Potencier <fabien.potencier@symfony-project.com>
*/
class InputArgument
{
Expand Down
2 changes: 1 addition & 1 deletion Input/InputDefinition.php
Expand Up @@ -21,7 +21,7 @@
* new InputOption('foo', 'f', InputOption::PARAMETER_REQUIRED),
* ));
*
* @author Fabien Potencier <fabien.potencier@symfony-project.com>
* @author Fabien Potencier <fabien.potencier@symfony-project.com>
*/
class InputDefinition
{
Expand Down
2 changes: 1 addition & 1 deletion Input/InputInterface.php
Expand Up @@ -14,7 +14,7 @@
/**
* InputInterface is the interface implemented by all input classes.
*
* @author Fabien Potencier <fabien.potencier@symfony-project.com>
* @author Fabien Potencier <fabien.potencier@symfony-project.com>
*/
interface InputInterface
{
Expand Down
2 changes: 1 addition & 1 deletion Input/InputOption.php
Expand Up @@ -14,7 +14,7 @@
/**
* Represents a command line option.
*
* @author Fabien Potencier <fabien.potencier@symfony-project.com>
* @author Fabien Potencier <fabien.potencier@symfony-project.com>
*/
class InputOption
{
Expand Down
2 changes: 1 addition & 1 deletion Input/StringInput.php
Expand Up @@ -18,7 +18,7 @@
*
* $input = new StringInput('foo --bar="foobar"');
*
* @author Fabien Potencier <fabien.potencier@symfony-project.com>
* @author Fabien Potencier <fabien.potencier@symfony-project.com>
*/
class StringInput extends ArgvInput
{
Expand Down
2 changes: 1 addition & 1 deletion Output/ConsoleOutput.php
Expand Up @@ -22,7 +22,7 @@
*
* $output = new StreamOutput(fopen('php://stdout', 'w'));
*
* @author Fabien Potencier <fabien.potencier@symfony-project.com>
* @author Fabien Potencier <fabien.potencier@symfony-project.com>
*/
class ConsoleOutput extends StreamOutput
{
Expand Down
2 changes: 1 addition & 1 deletion Output/NullOutput.php
Expand Up @@ -16,7 +16,7 @@
*
* $output = new NullOutput();
*
* @author Fabien Potencier <fabien.potencier@symfony-project.com>
* @author Fabien Potencier <fabien.potencier@symfony-project.com>
*/
class NullOutput extends Output
{
Expand Down
2 changes: 1 addition & 1 deletion Output/Output.php
Expand Up @@ -20,7 +20,7 @@
* * verbose: -v (more output - debug)
* * quiet: -q (no output)
*
* @author Fabien Potencier <fabien.potencier@symfony-project.com>
* @author Fabien Potencier <fabien.potencier@symfony-project.com>
*/
abstract class Output implements OutputInterface
{
Expand Down
2 changes: 1 addition & 1 deletion Output/OutputInterface.php
Expand Up @@ -14,7 +14,7 @@
/**
* OutputInterface is the interface implemented by all Output classes.
*
* @author Fabien Potencier <fabien.potencier@symfony-project.com>
* @author Fabien Potencier <fabien.potencier@symfony-project.com>
*/
interface OutputInterface
{
Expand Down
2 changes: 1 addition & 1 deletion Output/StreamOutput.php
Expand Up @@ -22,7 +22,7 @@
*
* $output = new StreamOutput(fopen('/path/to/output.log', 'a', false));
*
* @author Fabien Potencier <fabien.potencier@symfony-project.com>
* @author Fabien Potencier <fabien.potencier@symfony-project.com>
*/
class StreamOutput extends Output
{
Expand Down
2 changes: 1 addition & 1 deletion Shell.php
Expand Up @@ -21,7 +21,7 @@
* This class only works with a PHP compiled with readline support
* (either --with-readline or --with-libedit)
*
* @author Fabien Potencier <fabien.potencier@symfony-project.com>
* @author Fabien Potencier <fabien.potencier@symfony-project.com>
*/
class Shell
{
Expand Down
2 changes: 1 addition & 1 deletion Tester/ApplicationTester.php
Expand Up @@ -16,7 +16,7 @@
*/

/**
* @author Fabien Potencier <fabien.potencier@symfony-project.com>
* @author Fabien Potencier <fabien.potencier@symfony-project.com>
*/
class ApplicationTester
{
Expand Down
2 changes: 1 addition & 1 deletion Tester/CommandTester.php
Expand Up @@ -16,7 +16,7 @@
*/

/**
* @author Fabien Potencier <fabien.potencier@symfony-project.com>
* @author Fabien Potencier <fabien.potencier@symfony-project.com>
*/
class CommandTester
{
Expand Down

0 comments on commit eb5d824

Please sign in to comment.