From eb5d82484dae3875bbfdb5fec1440c7894358c96 Mon Sep 17 00:00:00 2001 From: Kris Wallsmith Date: Sun, 17 Oct 2010 04:45:15 -0700 Subject: [PATCH] =?UTF-8?q?Removed=20all=20those=20spaces=20after=20@autho?= =?UTF-8?q?r=20that=20were=20bothering=20me=20so=E2=80=A6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Application.php | 2 +- Command/Command.php | 2 +- Command/HelpCommand.php | 2 +- Command/ListCommand.php | 2 +- Helper/DialogHelper.php | 2 +- Helper/FormatterHelper.php | 2 +- Helper/Helper.php | 2 +- Helper/HelperInterface.php | 2 +- Helper/HelperSet.php | 2 +- Input/ArgvInput.php | 2 +- Input/ArrayInput.php | 2 +- Input/Input.php | 2 +- Input/InputArgument.php | 2 +- Input/InputDefinition.php | 2 +- Input/InputInterface.php | 2 +- Input/InputOption.php | 2 +- Input/StringInput.php | 2 +- Output/ConsoleOutput.php | 2 +- Output/NullOutput.php | 2 +- Output/Output.php | 2 +- Output/OutputInterface.php | 2 +- Output/StreamOutput.php | 2 +- Shell.php | 2 +- Tester/ApplicationTester.php | 2 +- Tester/CommandTester.php | 2 +- 25 files changed, 25 insertions(+), 25 deletions(-) diff --git a/Application.php b/Application.php index 1c1dec442..850dbee20 100644 --- a/Application.php +++ b/Application.php @@ -40,7 +40,7 @@ * $app->addCommand(new SimpleCommand()); * $app->run(); * - * @author Fabien Potencier + * @author Fabien Potencier */ class Application { diff --git a/Command/Command.php b/Command/Command.php index 26d9025bc..5f04baa54 100644 --- a/Command/Command.php +++ b/Command/Command.php @@ -21,7 +21,7 @@ /** * Base class for all commands. * - * @author Fabien Potencier + * @author Fabien Potencier */ class Command { diff --git a/Command/HelpCommand.php b/Command/HelpCommand.php index 5ac806982..5e0c30739 100644 --- a/Command/HelpCommand.php +++ b/Command/HelpCommand.php @@ -21,7 +21,7 @@ /** * HelpCommand displays the help for a given command. * - * @author Fabien Potencier + * @author Fabien Potencier */ class HelpCommand extends Command { diff --git a/Command/ListCommand.php b/Command/ListCommand.php index ffede416d..f180e4124 100644 --- a/Command/ListCommand.php +++ b/Command/ListCommand.php @@ -21,7 +21,7 @@ /** * ListCommand displays the list of all available commands for the application. * - * @author Fabien Potencier + * @author Fabien Potencier */ class ListCommand extends Command { diff --git a/Helper/DialogHelper.php b/Helper/DialogHelper.php index abba0604c..25c2b04a7 100644 --- a/Helper/DialogHelper.php +++ b/Helper/DialogHelper.php @@ -16,7 +16,7 @@ /** * The Dialog class provides helpers to interact with the user. * - * @author Fabien Potencier + * @author Fabien Potencier */ class DialogHelper extends Helper { diff --git a/Helper/FormatterHelper.php b/Helper/FormatterHelper.php index 6053ad1f2..baa2bc1a9 100644 --- a/Helper/FormatterHelper.php +++ b/Helper/FormatterHelper.php @@ -14,7 +14,7 @@ /** * The Formatter class provides helpers to format messages. * - * @author Fabien Potencier + * @author Fabien Potencier */ class FormatterHelper extends Helper { diff --git a/Helper/Helper.php b/Helper/Helper.php index 79cadbc62..28a8d991f 100644 --- a/Helper/Helper.php +++ b/Helper/Helper.php @@ -14,7 +14,7 @@ /** * Helper is the base class for all helper classes. * - * @author Fabien Potencier + * @author Fabien Potencier */ abstract class Helper implements HelperInterface { diff --git a/Helper/HelperInterface.php b/Helper/HelperInterface.php index bfed913b0..7430e0713 100644 --- a/Helper/HelperInterface.php +++ b/Helper/HelperInterface.php @@ -14,7 +14,7 @@ /** * HelperInterface is the interface all helpers must implement. * - * @author Fabien Potencier + * @author Fabien Potencier */ interface HelperInterface { diff --git a/Helper/HelperSet.php b/Helper/HelperSet.php index 3db05ee27..b8b412f79 100644 --- a/Helper/HelperSet.php +++ b/Helper/HelperSet.php @@ -16,7 +16,7 @@ /** * HelperSet represents a set of helpers to be used with a command. * - * @author Fabien Potencier + * @author Fabien Potencier */ class HelperSet { diff --git a/Input/ArgvInput.php b/Input/ArgvInput.php index 85aaac89a..beb6fc436 100644 --- a/Input/ArgvInput.php +++ b/Input/ArgvInput.php @@ -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 + * @author Fabien Potencier * * @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 diff --git a/Input/ArrayInput.php b/Input/ArrayInput.php index 9637427a8..786d3ad71 100644 --- a/Input/ArrayInput.php +++ b/Input/ArrayInput.php @@ -18,7 +18,7 @@ * * $input = new ArrayInput(array('name' => 'foo', '--bar' => 'foobar')); * - * @author Fabien Potencier + * @author Fabien Potencier */ class ArrayInput extends Input { diff --git a/Input/Input.php b/Input/Input.php index 09da54738..9819b188e 100644 --- a/Input/Input.php +++ b/Input/Input.php @@ -20,7 +20,7 @@ * * `StringInput`: The input is provided as a string * * `ArrayInput`: The input is provided as an array * - * @author Fabien Potencier + * @author Fabien Potencier */ abstract class Input implements InputInterface { diff --git a/Input/InputArgument.php b/Input/InputArgument.php index deaab9e56..f96eecb6b 100644 --- a/Input/InputArgument.php +++ b/Input/InputArgument.php @@ -14,7 +14,7 @@ /** * Represents a command line argument. * - * @author Fabien Potencier + * @author Fabien Potencier */ class InputArgument { diff --git a/Input/InputDefinition.php b/Input/InputDefinition.php index d74d57e43..cc737440d 100644 --- a/Input/InputDefinition.php +++ b/Input/InputDefinition.php @@ -21,7 +21,7 @@ * new InputOption('foo', 'f', InputOption::PARAMETER_REQUIRED), * )); * - * @author Fabien Potencier + * @author Fabien Potencier */ class InputDefinition { diff --git a/Input/InputInterface.php b/Input/InputInterface.php index e7e8b5975..a0f1aa0dc 100644 --- a/Input/InputInterface.php +++ b/Input/InputInterface.php @@ -14,7 +14,7 @@ /** * InputInterface is the interface implemented by all input classes. * - * @author Fabien Potencier + * @author Fabien Potencier */ interface InputInterface { diff --git a/Input/InputOption.php b/Input/InputOption.php index 22c6967cd..ca76c826f 100644 --- a/Input/InputOption.php +++ b/Input/InputOption.php @@ -14,7 +14,7 @@ /** * Represents a command line option. * - * @author Fabien Potencier + * @author Fabien Potencier */ class InputOption { diff --git a/Input/StringInput.php b/Input/StringInput.php index 2adc42d19..bc8cc2cb5 100644 --- a/Input/StringInput.php +++ b/Input/StringInput.php @@ -18,7 +18,7 @@ * * $input = new StringInput('foo --bar="foobar"'); * - * @author Fabien Potencier + * @author Fabien Potencier */ class StringInput extends ArgvInput { diff --git a/Output/ConsoleOutput.php b/Output/ConsoleOutput.php index 52d166a18..9aa479126 100644 --- a/Output/ConsoleOutput.php +++ b/Output/ConsoleOutput.php @@ -22,7 +22,7 @@ * * $output = new StreamOutput(fopen('php://stdout', 'w')); * - * @author Fabien Potencier + * @author Fabien Potencier */ class ConsoleOutput extends StreamOutput { diff --git a/Output/NullOutput.php b/Output/NullOutput.php index f935524bc..695ca0eab 100644 --- a/Output/NullOutput.php +++ b/Output/NullOutput.php @@ -16,7 +16,7 @@ * * $output = new NullOutput(); * - * @author Fabien Potencier + * @author Fabien Potencier */ class NullOutput extends Output { diff --git a/Output/Output.php b/Output/Output.php index 559e5554f..f4542f456 100644 --- a/Output/Output.php +++ b/Output/Output.php @@ -20,7 +20,7 @@ * * verbose: -v (more output - debug) * * quiet: -q (no output) * - * @author Fabien Potencier + * @author Fabien Potencier */ abstract class Output implements OutputInterface { diff --git a/Output/OutputInterface.php b/Output/OutputInterface.php index 65517c6ff..289f4b428 100644 --- a/Output/OutputInterface.php +++ b/Output/OutputInterface.php @@ -14,7 +14,7 @@ /** * OutputInterface is the interface implemented by all Output classes. * - * @author Fabien Potencier + * @author Fabien Potencier */ interface OutputInterface { diff --git a/Output/StreamOutput.php b/Output/StreamOutput.php index 0ddf0f999..55805c729 100644 --- a/Output/StreamOutput.php +++ b/Output/StreamOutput.php @@ -22,7 +22,7 @@ * * $output = new StreamOutput(fopen('/path/to/output.log', 'a', false)); * - * @author Fabien Potencier + * @author Fabien Potencier */ class StreamOutput extends Output { diff --git a/Shell.php b/Shell.php index 8e87811f1..278572795 100644 --- a/Shell.php +++ b/Shell.php @@ -21,7 +21,7 @@ * This class only works with a PHP compiled with readline support * (either --with-readline or --with-libedit) * - * @author Fabien Potencier + * @author Fabien Potencier */ class Shell { diff --git a/Tester/ApplicationTester.php b/Tester/ApplicationTester.php index 1e2700d97..b7092470b 100644 --- a/Tester/ApplicationTester.php +++ b/Tester/ApplicationTester.php @@ -16,7 +16,7 @@ */ /** - * @author Fabien Potencier + * @author Fabien Potencier */ class ApplicationTester { diff --git a/Tester/CommandTester.php b/Tester/CommandTester.php index 48f6c412b..8c971c0c0 100644 --- a/Tester/CommandTester.php +++ b/Tester/CommandTester.php @@ -16,7 +16,7 @@ */ /** - * @author Fabien Potencier + * @author Fabien Potencier */ class CommandTester {