From 5ba629e874d19c666de8b28228d49c751fbc0b29 Mon Sep 17 00:00:00 2001 From: Dan Cryer Date: Mon, 12 May 2014 17:26:17 +0100 Subject: [PATCH] Adding / correcting the file docblock throughout the project --- PHPCI/Application.php | 4 ++-- PHPCI/BuildFactory.php | 4 ++-- PHPCI/Builder.php | 4 ++-- PHPCI/Command/CreateAdminCommand.php | 12 ++++++------ PHPCI/Command/DaemonCommand.php | 13 ++++++------- PHPCI/Command/DaemoniseCommand.php | 13 ++++++------- PHPCI/Command/GenerateCommand.php | 12 ++++++------ PHPCI/Command/InstallCommand.php | 4 ++-- PHPCI/Command/PollCommand.php | 5 ++--- PHPCI/Command/RunCommand.php | 12 ++++++------ PHPCI/Command/UpdateCommand.php | 4 ++-- PHPCI/Controller.php | 7 +++++++ PHPCI/Controller/BuildController.php | 12 ++++++------ PHPCI/Controller/BuildStatusController.php | 12 ++++++------ PHPCI/Controller/HomeController.php | 12 ++++++------ PHPCI/Controller/PluginController.php | 4 ++-- PHPCI/Controller/ProjectController.php | 12 ++++++------ PHPCI/Controller/SessionController.php | 12 ++++++------ PHPCI/Controller/SettingsController.php | 4 ++-- PHPCI/Controller/UserController.php | 12 ++++++------ PHPCI/Controller/WebhookController.php | 4 ++-- PHPCI/Helper/BaseCommandExecutor.php | 7 +++++++ PHPCI/Helper/Build.php | 4 ++-- PHPCI/Helper/BuildInterpolator.php | 7 +++++++ PHPCI/Helper/CommandExecutor.php | 7 +++++++ PHPCI/Helper/Email.php | 7 +++++++ PHPCI/Helper/Github.php | 7 +++++++ PHPCI/Helper/MailerFactory.php | 7 +++++++ PHPCI/Helper/SshKey.php | 7 +++++++ PHPCI/Helper/UnixCommandExecutor.php | 7 +++++++ PHPCI/Helper/User.php | 12 ++++++------ PHPCI/Helper/WindowsCommandExecutor.php | 7 +++++++ PHPCI/Logging/BuildDBLogHandler.php | 8 +++++++- PHPCI/Logging/BuildLogger.php | 8 +++++++- PHPCI/Logging/Handler.php | 7 +++++++ PHPCI/Logging/LoggedBuildContextTidier.php | 7 +++++++ PHPCI/Logging/LoggerConfig.php | 9 +++++++-- PHPCI/Logging/OutputLogHandler.php | 9 +++++++-- PHPCI/Model.php | 8 ++++++++ PHPCI/Model/Build.php | 12 ++++++------ PHPCI/Model/Build/BitbucketBuild.php | 12 ++++++------ PHPCI/Model/Build/GithubBuild.php | 12 ++++++------ PHPCI/Model/Build/GitlabBuild.php | 12 ++++++------ PHPCI/Model/Build/LocalBuild.php | 12 ++++++------ PHPCI/Model/Build/MercurialBuild.php | 12 ++++++------ PHPCI/Model/Build/RemoteGitBuild.php | 12 ++++++------ PHPCI/Model/BuildMeta.php | 7 +++++-- PHPCI/Model/Project.php | 12 ++++++------ PHPCI/Model/User.php | 12 ++++++------ PHPCI/Plugin.php | 12 ++++++------ PHPCI/Plugin/Atoum.php | 7 +++++++ PHPCI/Plugin/Behat.php | 4 ++-- PHPCI/Plugin/Campfire.php | 7 +++++++ PHPCI/Plugin/CleanBuild.php | 12 ++++++------ PHPCI/Plugin/Codeception.php | 4 ++-- PHPCI/Plugin/Composer.php | 12 ++++++------ PHPCI/Plugin/CopyBuild.php | 12 ++++++------ PHPCI/Plugin/Email.php | 12 ++++++------ PHPCI/Plugin/Env.php | 12 ++++++------ PHPCI/Plugin/Git.php | 4 ++-- PHPCI/Plugin/Grunt.php | 12 ++++++------ PHPCI/Plugin/Irc.php | 7 +++++++ PHPCI/Plugin/Lint.php | 4 ++-- PHPCI/Plugin/Mysql.php | 12 ++++++------ PHPCI/Plugin/PackageBuild.php | 12 ++++++------ PHPCI/Plugin/Pdepend.php | 4 ++-- PHPCI/Plugin/Pgsql.php | 12 ++++++------ PHPCI/Plugin/Phing.php | 4 ++-- PHPCI/Plugin/PhpCodeSniffer.php | 12 ++++++------ PHPCI/Plugin/PhpCpd.php | 12 ++++++------ PHPCI/Plugin/PhpCsFixer.php | 12 ++++++------ PHPCI/Plugin/PhpDocblockChecker.php | 12 ++++++------ PHPCI/Plugin/PhpLoc.php | 4 ++-- PHPCI/Plugin/PhpMessDetector.php | 12 ++++++------ PHPCI/Plugin/PhpParallelLint.php | 12 ++++++------ PHPCI/Plugin/PhpSpec.php | 12 ++++++------ PHPCI/Plugin/PhpUnit.php | 12 ++++++------ PHPCI/Plugin/Shell.php | 4 ++-- PHPCI/Plugin/Sqlite.php | 12 ++++++------ PHPCI/Plugin/Wipe.php | 12 ++++++------ PHPCI/Store.php | 8 ++++++++ PHPCI/Store/BuildMetaStore.php | 7 +++++-- PHPCI/Store/BuildStore.php | 12 ++++++------ PHPCI/Store/ProjectStore.php | 12 ++++++------ PHPCI/Store/UserStore.php | 12 ++++++------ PHPCI/ZeroConfigPlugin.php | 4 ++-- 86 files changed, 461 insertions(+), 315 deletions(-) diff --git a/PHPCI/Application.php b/PHPCI/Application.php index 011e27e5..3e15686e 100644 --- a/PHPCI/Application.php +++ b/PHPCI/Application.php @@ -2,9 +2,9 @@ /** * PHPCI - Continuous Integration for PHP * -* @copyright Copyright 2013, Block 8 Limited. +* @copyright Copyright 2014, Block 8 Limited. * @license https://github.com/Block8/PHPCI/blob/master/LICENSE.md -* @link http://www.phptesting.org/ +* @link https://www.phptesting.org/ */ namespace PHPCI; diff --git a/PHPCI/BuildFactory.php b/PHPCI/BuildFactory.php index 3f48eec0..4825047d 100644 --- a/PHPCI/BuildFactory.php +++ b/PHPCI/BuildFactory.php @@ -2,9 +2,9 @@ /** * PHPCI - Continuous Integration for PHP * -* @copyright Copyright 2013, Block 8 Limited. +* @copyright Copyright 2014, Block 8 Limited. * @license https://github.com/Block8/PHPCI/blob/master/LICENSE.md -* @link http://www.phptesting.org/ +* @link https://www.phptesting.org/ */ namespace PHPCI; diff --git a/PHPCI/Builder.php b/PHPCI/Builder.php index 7365f42f..674e63a9 100644 --- a/PHPCI/Builder.php +++ b/PHPCI/Builder.php @@ -2,9 +2,9 @@ /** * PHPCI - Continuous Integration for PHP * - * @copyright Copyright 2013, Block 8 Limited. + * @copyright Copyright 2014, Block 8 Limited. * @license https://github.com/Block8/PHPCI/blob/master/LICENSE.md - * @link http://www.phptesting.org/ + * @link https://www.phptesting.org/ */ namespace PHPCI; diff --git a/PHPCI/Command/CreateAdminCommand.php b/PHPCI/Command/CreateAdminCommand.php index 647dffca..30d800b1 100644 --- a/PHPCI/Command/CreateAdminCommand.php +++ b/PHPCI/Command/CreateAdminCommand.php @@ -1,11 +1,11 @@ /dev/null 2>&1 & -* -* @copyright Copyright 2013, Block 8 Limited. -* @license https://github.com/Block8/PHPCI/blob/master/LICENSE.md -* @link http://www.phptesting.org/ -*/ + * PHPCI - Continuous Integration for PHP + * + * @copyright Copyright 2014, Block 8 Limited. + * @license https://github.com/Block8/PHPCI/blob/master/LICENSE.md + * @link https://www.phptesting.org/ + */ namespace PHPCI\Command; diff --git a/PHPCI/Command/DaemoniseCommand.php b/PHPCI/Command/DaemoniseCommand.php index b4d0295c..2850ff5f 100644 --- a/PHPCI/Command/DaemoniseCommand.php +++ b/PHPCI/Command/DaemoniseCommand.php @@ -1,12 +1,11 @@ /dev/null 2>&1 & -* -* @copyright Copyright 2013, Block 8 Limited. -* @license https://github.com/Block8/PHPCI/blob/master/LICENSE.md -* @link http://www.phptesting.org/ -*/ + * PHPCI - Continuous Integration for PHP + * + * @copyright Copyright 2014, Block 8 Limited. + * @license https://github.com/Block8/PHPCI/blob/master/LICENSE.md + * @link https://www.phptesting.org/ + */ namespace PHPCI\Command; diff --git a/PHPCI/Command/GenerateCommand.php b/PHPCI/Command/GenerateCommand.php index 82c41531..07307686 100644 --- a/PHPCI/Command/GenerateCommand.php +++ b/PHPCI/Command/GenerateCommand.php @@ -1,11 +1,11 @@ output = $output; } - protected function write(array $record) { $this->output->writeln((string)$record['formatted']); diff --git a/PHPCI/Model.php b/PHPCI/Model.php index 7e314693..d1adf9ec 100644 --- a/PHPCI/Model.php +++ b/PHPCI/Model.php @@ -1,4 +1,12 @@