diff --git a/.devtools/update-headers.php b/.devtools/update-headers.php new file mode 100755 index 0000000..530fdf0 --- /dev/null +++ b/.devtools/update-headers.php @@ -0,0 +1,132 @@ +#!/usr/bin/env php + + * @copyright since 2016 Hennes Hervé + * @license https://opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0) + * https://github.com/nenes25/prestashop_console + * https://www.h-hennes.fr/blog/ + */ + +$licenseFile = __DIR__ . '/licence.txt'; +$projectRoot = dirname(__DIR__); + +if (!file_exists($licenseFile)) { + echo "Error: licence.txt not found at $licenseFile\n"; + exit(1); +} + +// Read the new license block (already formatted with /** */) +$newLicenseBlock = file_get_contents($licenseFile); +$newLicenseBlock = trim($newLicenseBlock); + +// Function to find PHP files +function findPhpFiles($dir) { + $excludeDirs = ['vendor', 'phar', '.git', 'node_modules']; + $phpFiles = []; + + $iterator = new RecursiveIteratorIterator( + new RecursiveDirectoryIterator($dir, RecursiveDirectoryIterator::SKIP_DOTS), + RecursiveIteratorIterator::SELF_FIRST + ); + + foreach ($iterator as $file) { + if ($file->isFile() && $file->getExtension() === 'php') { + $path = $file->getPathname(); + $excluded = false; + foreach ($excludeDirs as $excludeDir) { + if (strpos($path, DIRECTORY_SEPARATOR . $excludeDir . DIRECTORY_SEPARATOR) !== false) { + $excluded = true; + break; + } + } + if (!$excluded) { + $phpFiles[] = $path; + } + } + } + + return $phpFiles; +} + +// Function to replace license header +function updateLicenseHeader($filePath, $newLicenseBlock) { + $content = file_get_contents($filePath); + $originalContent = $content; + + // Check if file starts with shebang + $hasShebang = strpos($content, '#!') === 0; + $shebang = ''; + + if ($hasShebang) { + $lines = explode("\n", $content, 2); + $shebang = $lines[0] . "\n"; + $content = isset($lines[1]) ? $lines[1] : ''; + } + + // Remove getMessage() . "\n"; + $errors++; + } +} + +echo "\n" . str_repeat('=', 60) . "\n"; +echo "Update complete!\n"; +echo "Files updated: $updated\n"; +echo "Errors: $errors\n"; +echo str_repeat('=', 60) . "\n"; + +exit($errors > 0 ? 1 : 0); diff --git a/.php-cs-fixer.dist.php b/.php-cs-fixer.dist.php index b5cf166..6e3b77a 100644 --- a/.php-cs-fixer.dist.php +++ b/.php-cs-fixer.dist.php @@ -1,4 +1,21 @@ + * @copyright since 2016 Hennes Hervé + * @license https://opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0) + * https://github.com/nenes25/prestashop_console + * https://www.h-hennes.fr/blog/ + */ $config = new PrestaShop\CodingStandards\CsFixer\Config(); diff --git a/build.php b/build.php index 4223896..58aef6d 100644 --- a/build.php +++ b/build.php @@ -1,7 +1,22 @@ + * @copyright since 2016 Hennes Hervé + * @license https://opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0) + * https://github.com/nenes25/prestashop_console + * https://www.h-hennes.fr/blog/ */ + $binDir = dirname(__FILE__).'/bin/'; $versionFile = $binDir.'/phar/current.version'; diff --git a/config.php b/config.php index 0677c13..5687884 100644 --- a/config.php +++ b/config.php @@ -1,8 +1,22 @@ + * @copyright since 2016 Hennes Hervé + * @license https://opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0) + * https://github.com/nenes25/prestashop_console + * https://www.h-hennes.fr/blog/ */ + $configuration = []; /** diff --git a/console.php b/console.php index 5463bdc..876bfb4 100644 --- a/console.php +++ b/console.php @@ -1,8 +1,6 @@ #!/usr/bin/env php - * @copyright 2007-2018 Hennes Hervé + * @copyright since 2016 Hennes Hervé * @license https://opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0) - * http://www.h-hennes.fr/blog/ + * https://github.com/nenes25/prestashop_console + * https://www.h-hennes.fr/blog/ */ use PrestashopConsole\PrestashopConsoleApplication; diff --git a/index.php b/index.php index c8c4b64..22f010c 100644 --- a/index.php +++ b/index.php @@ -1,7 +1,5 @@ - * @copyright 2007-2018 Hennes Hervé + * @copyright since 2016 Hennes Hervé * @license https://opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0) - * http://www.h-hennes.fr/blog/ + * https://github.com/nenes25/prestashop_console + * https://www.h-hennes.fr/blog/ */ header('Expires: Mon, 26 Jul 1997 05:00:00 GMT'); diff --git a/prestashopConsoleWrapper.php b/prestashopConsoleWrapper.php index b330416..d5dc01b 100644 --- a/prestashopConsoleWrapper.php +++ b/prestashopConsoleWrapper.php @@ -1,7 +1,5 @@ - * @copyright Since 2016 Hennes Hervé + * @copyright since 2016 Hennes Hervé * @license https://opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0) - * http://www.h-hennes.fr/blog/ + * https://github.com/nenes25/prestashop_console + * https://www.h-hennes.fr/blog/ */ -/** - * Console wrapper in browser - * - * With this way you cannot have interaction with the console, every parameters should be provided in url - * - * WARNING: Remove this file after your works as been done as it can be a security issue to let it present - * - * Upload this file in the root directory of your prestashop - * Call the page this way - * http://www.site.com/prestashopConsoleWrapper.php?command=command:name:domain&arguments['argumentKey']=argumentValue&=options['optionkey']=value - * - * Several examples : - * - * Show help of the command admin:user:list - * prestashopConsoleWrapper.php?command=admin:user:list&options[]=help - * List only active modules - * prestashopConsoleWrapper.php?command=module:list&options[]=active - * List only active modules not from prestashop - * prestashopConsoleWrapper.php?command=module:list&options[]=active&options[]=no-native - * - */ class PrestashopConsoleWrapper { /** diff --git a/src/PrestashopConsole/Command/Admin/ProfilesListCommand.php b/src/PrestashopConsole/Command/Admin/ProfilesListCommand.php index 812a8f4..fbbaa7d 100644 --- a/src/PrestashopConsole/Command/Admin/ProfilesListCommand.php +++ b/src/PrestashopConsole/Command/Admin/ProfilesListCommand.php @@ -1,7 +1,5 @@ - * @copyright 2007-2021 Hennes Hervé + * @copyright since 2016 Hennes Hervé * @license https://opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0) - * https://github.com/nenes25/prestashop_console* + * https://github.com/nenes25/prestashop_console * https://www.h-hennes.fr/blog/ */ diff --git a/src/PrestashopConsole/Command/Admin/User/CreateCommand.php b/src/PrestashopConsole/Command/Admin/User/CreateCommand.php index b5a091c..6a20834 100644 --- a/src/PrestashopConsole/Command/Admin/User/CreateCommand.php +++ b/src/PrestashopConsole/Command/Admin/User/CreateCommand.php @@ -1,7 +1,5 @@ - * @copyright 2007-2019 Hennes Hervé + * @copyright since 2016 Hennes Hervé * @license https://opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0) - * http://www.h-hennes.fr/blog/ + * https://github.com/nenes25/prestashop_console + * https://www.h-hennes.fr/blog/ */ namespace PrestashopConsole\Command\Admin\User; diff --git a/src/PrestashopConsole/Command/Admin/User/ListCommand.php b/src/PrestashopConsole/Command/Admin/User/ListCommand.php index bd21bf3..2b3f8cf 100644 --- a/src/PrestashopConsole/Command/Admin/User/ListCommand.php +++ b/src/PrestashopConsole/Command/Admin/User/ListCommand.php @@ -1,7 +1,5 @@ - * @copyright 2007-2019 Hennes Hervé + * @copyright since 2016 Hennes Hervé * @license https://opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0) - * http://www.h-hennes.fr/blog/ + * https://github.com/nenes25/prestashop_console + * https://www.h-hennes.fr/blog/ */ namespace PrestashopConsole\Command\Admin\User; diff --git a/src/PrestashopConsole/Command/Admin/User/PasswordCommand.php b/src/PrestashopConsole/Command/Admin/User/PasswordCommand.php index 471e14e..685cb6c 100644 --- a/src/PrestashopConsole/Command/Admin/User/PasswordCommand.php +++ b/src/PrestashopConsole/Command/Admin/User/PasswordCommand.php @@ -1,7 +1,5 @@ - * @copyright 2007-2019 Hennes Hervé + * @copyright since 2016 Hennes Hervé * @license https://opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0) - * http://www.h-hennes.fr/blog/ + * https://github.com/nenes25/prestashop_console + * https://www.h-hennes.fr/blog/ */ namespace PrestashopConsole\Command\Admin\User; diff --git a/src/PrestashopConsole/Command/Analyze/GlobalCommand.php b/src/PrestashopConsole/Command/Analyze/GlobalCommand.php index adffcf6..0d9414f 100644 --- a/src/PrestashopConsole/Command/Analyze/GlobalCommand.php +++ b/src/PrestashopConsole/Command/Analyze/GlobalCommand.php @@ -13,7 +13,6 @@ * @author Hennes Hervé * @copyright since 2016 Hennes Hervé * @license https://opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0) - * * https://github.com/nenes25/prestashop_console * https://www.h-hennes.fr/blog/ */ diff --git a/src/PrestashopConsole/Command/Analyze/ListCarriersCommand.php b/src/PrestashopConsole/Command/Analyze/ListCarriersCommand.php index 5b87a19..edc52bd 100644 --- a/src/PrestashopConsole/Command/Analyze/ListCarriersCommand.php +++ b/src/PrestashopConsole/Command/Analyze/ListCarriersCommand.php @@ -1,7 +1,5 @@ - * @copyright 2007-2021 Hennes Hervé + * @copyright since 2016 Hennes Hervé * @license https://opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0) - * http://www.h-hennes.fr/blog/ + * https://github.com/nenes25/prestashop_console + * https://www.h-hennes.fr/blog/ */ namespace PrestashopConsole\Command\Analyze; diff --git a/src/PrestashopConsole/Command/Analyze/ListPaymentsCommand.php b/src/PrestashopConsole/Command/Analyze/ListPaymentsCommand.php index c3e3114..cf9d1a7 100644 --- a/src/PrestashopConsole/Command/Analyze/ListPaymentsCommand.php +++ b/src/PrestashopConsole/Command/Analyze/ListPaymentsCommand.php @@ -1,7 +1,5 @@ - * @copyright 2007-2021 Hennes Hervé + * @copyright since 2016 Hennes Hervé * @license https://opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0) - * http://www.h-hennes.fr/blog/ + * https://github.com/nenes25/prestashop_console + * https://www.h-hennes.fr/blog/ */ namespace PrestashopConsole\Command\Analyze; diff --git a/src/PrestashopConsole/Command/Analyze/TablesSizeCommand.php b/src/PrestashopConsole/Command/Analyze/TablesSizeCommand.php index b9c030b..1003498 100644 --- a/src/PrestashopConsole/Command/Analyze/TablesSizeCommand.php +++ b/src/PrestashopConsole/Command/Analyze/TablesSizeCommand.php @@ -13,7 +13,6 @@ * @author Hennes Hervé * @copyright since 2016 Hennes Hervé * @license https://opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0) - * * https://github.com/nenes25/prestashop_console * https://www.h-hennes.fr/blog/ */ diff --git a/src/PrestashopConsole/Command/Analyze/WebsiteCommand.php b/src/PrestashopConsole/Command/Analyze/WebsiteCommand.php index 4454d10..034fc4f 100644 --- a/src/PrestashopConsole/Command/Analyze/WebsiteCommand.php +++ b/src/PrestashopConsole/Command/Analyze/WebsiteCommand.php @@ -1,7 +1,5 @@ - * @copyright 2007-2021 Hennes Hervé + * @copyright since 2016 Hennes Hervé * @license https://opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0) - * http://www.h-hennes.fr/blog/ + * https://github.com/nenes25/prestashop_console + * https://www.h-hennes.fr/blog/ */ namespace PrestashopConsole\Command\Analyze; diff --git a/src/PrestashopConsole/Command/Cache/CleanCommand.php b/src/PrestashopConsole/Command/Cache/CleanCommand.php index 91336ae..599e8e9 100644 --- a/src/PrestashopConsole/Command/Cache/CleanCommand.php +++ b/src/PrestashopConsole/Command/Cache/CleanCommand.php @@ -1,7 +1,5 @@ - * @copyright 2007-2019 Hennes Hervé + * @copyright since 2016 Hennes Hervé * @license https://opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0) - * http://www.h-hennes.fr/blog/ + * https://github.com/nenes25/prestashop_console + * https://www.h-hennes.fr/blog/ */ namespace PrestashopConsole\Command\Cache; diff --git a/src/PrestashopConsole/Command/Cache/FlushCommand.php b/src/PrestashopConsole/Command/Cache/FlushCommand.php index df61ca2..19ea92d 100644 --- a/src/PrestashopConsole/Command/Cache/FlushCommand.php +++ b/src/PrestashopConsole/Command/Cache/FlushCommand.php @@ -1,7 +1,5 @@ - * @copyright 2007-2019 Hennes Hervé + * @copyright since 2016 Hennes Hervé * @license https://opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0) - * http://www.h-hennes.fr/blog/ + * https://github.com/nenes25/prestashop_console + * https://www.h-hennes.fr/blog/ */ namespace PrestashopConsole\Command\Cache; diff --git a/src/PrestashopConsole/Command/Cache/MediaCommand.php b/src/PrestashopConsole/Command/Cache/MediaCommand.php index c635d10..d0306f4 100644 --- a/src/PrestashopConsole/Command/Cache/MediaCommand.php +++ b/src/PrestashopConsole/Command/Cache/MediaCommand.php @@ -1,7 +1,5 @@ - * @copyright 2007-2019 Hennes Hervé + * @copyright since 2016 Hennes Hervé * @license https://opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0) - * http://www.h-hennes.fr/blog/ + * https://github.com/nenes25/prestashop_console + * https://www.h-hennes.fr/blog/ */ namespace PrestashopConsole\Command\Cache; diff --git a/src/PrestashopConsole/Command/Cache/Smarty/ClearCommand.php b/src/PrestashopConsole/Command/Cache/Smarty/ClearCommand.php index e45949a..42bc096 100644 --- a/src/PrestashopConsole/Command/Cache/Smarty/ClearCommand.php +++ b/src/PrestashopConsole/Command/Cache/Smarty/ClearCommand.php @@ -1,7 +1,5 @@ - * @copyright 2007-2019 Hennes Hervé + * @copyright since 2016 Hennes Hervé * @license https://opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0) - * http://www.h-hennes.fr/blog/ + * https://github.com/nenes25/prestashop_console + * https://www.h-hennes.fr/blog/ */ namespace PrestashopConsole\Command\Cache\Smarty; diff --git a/src/PrestashopConsole/Command/Cache/Smarty/ConfigureCommand.php b/src/PrestashopConsole/Command/Cache/Smarty/ConfigureCommand.php index 30462f6..0cba921 100644 --- a/src/PrestashopConsole/Command/Cache/Smarty/ConfigureCommand.php +++ b/src/PrestashopConsole/Command/Cache/Smarty/ConfigureCommand.php @@ -1,7 +1,5 @@ - * @copyright 2007-2019 Hennes Hervé + * @copyright since 2016 Hennes Hervé * @license https://opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0) - * http://www.h-hennes.fr/blog/ + * https://github.com/nenes25/prestashop_console + * https://www.h-hennes.fr/blog/ */ namespace PrestashopConsole\Command\Cache\Smarty; diff --git a/src/PrestashopConsole/Command/Configuration/DeleteCommand.php b/src/PrestashopConsole/Command/Configuration/DeleteCommand.php index e082c59..97da840 100644 --- a/src/PrestashopConsole/Command/Configuration/DeleteCommand.php +++ b/src/PrestashopConsole/Command/Configuration/DeleteCommand.php @@ -1,7 +1,5 @@ - * @copyright 2007-2019 Hennes Hervé + * @copyright since 2016 Hennes Hervé * @license https://opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0) - * http://www.h-hennes.fr/blog/ + * https://github.com/nenes25/prestashop_console + * https://www.h-hennes.fr/blog/ */ namespace PrestashopConsole\Command\Configuration; diff --git a/src/PrestashopConsole/Command/Configuration/GetAllCommand.php b/src/PrestashopConsole/Command/Configuration/GetAllCommand.php index 9d91fbc..2a5bbbe 100644 --- a/src/PrestashopConsole/Command/Configuration/GetAllCommand.php +++ b/src/PrestashopConsole/Command/Configuration/GetAllCommand.php @@ -1,7 +1,5 @@ - * @copyright 2007-2019 Hennes Hervé + * @copyright since 2016 Hennes Hervé * @license https://opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0) - * http://www.h-hennes.fr/blog/ + * https://github.com/nenes25/prestashop_console + * https://www.h-hennes.fr/blog/ */ namespace PrestashopConsole\Command\Configuration; diff --git a/src/PrestashopConsole/Command/Configuration/GetCommand.php b/src/PrestashopConsole/Command/Configuration/GetCommand.php index dde661d..f4f59d6 100644 --- a/src/PrestashopConsole/Command/Configuration/GetCommand.php +++ b/src/PrestashopConsole/Command/Configuration/GetCommand.php @@ -1,7 +1,5 @@ - * @copyright 2007-2019 Hennes Hervé + * @copyright since 2016 Hennes Hervé * @license https://opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0) - * http://www.h-hennes.fr/blog/ + * https://github.com/nenes25/prestashop_console + * https://www.h-hennes.fr/blog/ */ namespace PrestashopConsole\Command\Configuration; diff --git a/src/PrestashopConsole/Command/Configuration/MassCommand.php b/src/PrestashopConsole/Command/Configuration/MassCommand.php index ea6fb79..efa3904 100644 --- a/src/PrestashopConsole/Command/Configuration/MassCommand.php +++ b/src/PrestashopConsole/Command/Configuration/MassCommand.php @@ -1,7 +1,5 @@ - * @copyright 2007-2021 Hennes Hervé + * @copyright since 2016 Hennes Hervé * @license https://opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0) - * https://github.com/nenes25/prestashop_console* + * https://github.com/nenes25/prestashop_console * https://www.h-hennes.fr/blog/ */ diff --git a/src/PrestashopConsole/Command/Configuration/SetCommand.php b/src/PrestashopConsole/Command/Configuration/SetCommand.php index 69e345e..c83b6d9 100644 --- a/src/PrestashopConsole/Command/Configuration/SetCommand.php +++ b/src/PrestashopConsole/Command/Configuration/SetCommand.php @@ -1,7 +1,5 @@ - * @copyright 2007-2019 Hennes Hervé + * @copyright since 2016 Hennes Hervé * @license https://opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0) - * http://www.h-hennes.fr/blog/ + * https://github.com/nenes25/prestashop_console + * https://www.h-hennes.fr/blog/ */ namespace PrestashopConsole\Command\Configuration; diff --git a/src/PrestashopConsole/Command/Console/CreateCommand.php b/src/PrestashopConsole/Command/Console/CreateCommand.php index d4a2a19..de4c040 100644 --- a/src/PrestashopConsole/Command/Console/CreateCommand.php +++ b/src/PrestashopConsole/Command/Console/CreateCommand.php @@ -1,7 +1,5 @@ - * @copyright 2007-2019 Hennes Hervé + * @copyright since 2016 Hennes Hervé * @license https://opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0) - * http://www.h-hennes.fr/blog/ + * https://github.com/nenes25/prestashop_console + * https://www.h-hennes.fr/blog/ */ namespace PrestashopConsole\Command\Console; diff --git a/src/PrestashopConsole/Command/Console/SelfUpdateCommand.php b/src/PrestashopConsole/Command/Console/SelfUpdateCommand.php index b0950b2..8ee89dd 100644 --- a/src/PrestashopConsole/Command/Console/SelfUpdateCommand.php +++ b/src/PrestashopConsole/Command/Console/SelfUpdateCommand.php @@ -1,7 +1,5 @@ - * @copyright 2007-2019 Hennes Hervé + * @copyright since 2016 Hennes Hervé * @license https://opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0) - * http://www.h-hennes.fr/blog/ + * https://github.com/nenes25/prestashop_console + * https://www.h-hennes.fr/blog/ */ namespace PrestashopConsole\Command\Console; diff --git a/src/PrestashopConsole/Command/Customer/ChangePasswordCommand.php b/src/PrestashopConsole/Command/Customer/ChangePasswordCommand.php index 190804c..f1c36bd 100644 --- a/src/PrestashopConsole/Command/Customer/ChangePasswordCommand.php +++ b/src/PrestashopConsole/Command/Customer/ChangePasswordCommand.php @@ -1,7 +1,5 @@ - * @copyright 2007-2020 Hennes Hervé + * @copyright since 2016 Hennes Hervé * @license https://opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0) - * http://www.h-hennes.fr/blog/ + * https://github.com/nenes25/prestashop_console + * https://www.h-hennes.fr/blog/ */ namespace PrestashopConsole\Command\Customer; diff --git a/src/PrestashopConsole/Command/Customer/CreateCommand.php b/src/PrestashopConsole/Command/Customer/CreateCommand.php index 9bbe6d8..d31c34a 100644 --- a/src/PrestashopConsole/Command/Customer/CreateCommand.php +++ b/src/PrestashopConsole/Command/Customer/CreateCommand.php @@ -1,8 +1,5 @@ - * @copyright 2007-2020 Hennes Hervé + * @copyright since 2016 Hennes Hervé * @license https://opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0) - * http://www.h-hennes.fr/blog/ + * https://github.com/nenes25/prestashop_console + * https://www.h-hennes.fr/blog/ */ namespace PrestashopConsole\Command\Customer; diff --git a/src/PrestashopConsole/Command/Customer/SendCustomerForgotPasswordCommand.php b/src/PrestashopConsole/Command/Customer/SendCustomerForgotPasswordCommand.php index 9abb1e1..9e6f212 100644 --- a/src/PrestashopConsole/Command/Customer/SendCustomerForgotPasswordCommand.php +++ b/src/PrestashopConsole/Command/Customer/SendCustomerForgotPasswordCommand.php @@ -1,7 +1,5 @@ - * @copyright 2007-2021 Hennes Hervé + * @copyright since 2016 Hennes Hervé * @license https://opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0) - * https://github.com/nenes25/prestashop_console* + * https://github.com/nenes25/prestashop_console * https://www.h-hennes.fr/blog/ */ diff --git a/src/PrestashopConsole/Command/Db/ExportCommand.php b/src/PrestashopConsole/Command/Db/ExportCommand.php index 6a59b58..677551b 100644 --- a/src/PrestashopConsole/Command/Db/ExportCommand.php +++ b/src/PrestashopConsole/Command/Db/ExportCommand.php @@ -1,7 +1,5 @@ - * @copyright 2007-2019 Hennes Hervé + * @copyright since 2016 Hennes Hervé * @license https://opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0) - * http://www.h-hennes.fr/blog/ + * https://github.com/nenes25/prestashop_console + * https://www.h-hennes.fr/blog/ */ namespace PrestashopConsole\Command\Db; diff --git a/src/PrestashopConsole/Command/Db/ImportCommand.php b/src/PrestashopConsole/Command/Db/ImportCommand.php index 9062c0d..875e5f0 100644 --- a/src/PrestashopConsole/Command/Db/ImportCommand.php +++ b/src/PrestashopConsole/Command/Db/ImportCommand.php @@ -1,7 +1,5 @@ - * @copyright 2007-2019 Hennes Hervé + * @copyright since 2016 Hennes Hervé * @license https://opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0) - * http://www.h-hennes.fr/blog/ + * https://github.com/nenes25/prestashop_console + * https://www.h-hennes.fr/blog/ */ namespace PrestashopConsole\Command\Db; diff --git a/src/PrestashopConsole/Command/Db/QueryCommand.php b/src/PrestashopConsole/Command/Db/QueryCommand.php index f80c02a..faa0490 100644 --- a/src/PrestashopConsole/Command/Db/QueryCommand.php +++ b/src/PrestashopConsole/Command/Db/QueryCommand.php @@ -1,7 +1,5 @@ - * @copyright 2007-2019 Hennes Hervé + * @copyright since 2016 Hennes Hervé * @license https://opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0) - * http://www.h-hennes.fr/blog/ + * https://github.com/nenes25/prestashop_console + * https://www.h-hennes.fr/blog/ */ namespace PrestashopConsole\Command\Db; diff --git a/src/PrestashopConsole/Command/Dev/AddIndexFilesCommand.php b/src/PrestashopConsole/Command/Dev/AddIndexFilesCommand.php index 3780cc0..7047da3 100644 --- a/src/PrestashopConsole/Command/Dev/AddIndexFilesCommand.php +++ b/src/PrestashopConsole/Command/Dev/AddIndexFilesCommand.php @@ -1,7 +1,5 @@ - * @copyright 2007-2019 Hennes Hervé + * @copyright since 2016 Hennes Hervé * @license https://opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0) - * http://www.h-hennes.fr/blog/ + * https://github.com/nenes25/prestashop_console + * https://www.h-hennes.fr/blog/ */ namespace PrestashopConsole\Command\Dev; diff --git a/src/PrestashopConsole/Command/Dev/AnonymizeCustomerCommand.php b/src/PrestashopConsole/Command/Dev/AnonymizeCustomerCommand.php index 634ff5a..c71f70c 100644 --- a/src/PrestashopConsole/Command/Dev/AnonymizeCustomerCommand.php +++ b/src/PrestashopConsole/Command/Dev/AnonymizeCustomerCommand.php @@ -1,17 +1,20 @@ + * @copyright since 2016 Hennes Hervé + * @license https://opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0) + * https://github.com/nenes25/prestashop_console + * https://www.h-hennes.fr/blog/ */ namespace PrestashopConsole\Command\Dev; diff --git a/src/PrestashopConsole/Command/Dev/ChangeShopDomainCommand.php b/src/PrestashopConsole/Command/Dev/ChangeShopDomainCommand.php index c4c93a7..9a30b30 100644 --- a/src/PrestashopConsole/Command/Dev/ChangeShopDomainCommand.php +++ b/src/PrestashopConsole/Command/Dev/ChangeShopDomainCommand.php @@ -13,7 +13,6 @@ * @author Hennes Hervé * @copyright since 2016 Hennes Hervé * @license https://opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0) - * * https://github.com/nenes25/prestashop_console * https://www.h-hennes.fr/blog/ */ diff --git a/src/PrestashopConsole/Command/Dev/Clean/CleanCommand.php b/src/PrestashopConsole/Command/Dev/Clean/CleanCommand.php index ae1026f..8d0ba50 100644 --- a/src/PrestashopConsole/Command/Dev/Clean/CleanCommand.php +++ b/src/PrestashopConsole/Command/Dev/Clean/CleanCommand.php @@ -1,7 +1,5 @@ - * @copyright 2007-2019 Hennes Hervé + * @copyright since 2016 Hennes Hervé * @license https://opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0) - * http://www.h-hennes.fr/blog/ + * https://github.com/nenes25/prestashop_console + * https://www.h-hennes.fr/blog/ */ namespace PrestashopConsole\Command\Dev\Clean; diff --git a/src/PrestashopConsole/Command/Dev/Clean/CleanCommandAbstract.php b/src/PrestashopConsole/Command/Dev/Clean/CleanCommandAbstract.php index e3a1902..d2984e6 100644 --- a/src/PrestashopConsole/Command/Dev/Clean/CleanCommandAbstract.php +++ b/src/PrestashopConsole/Command/Dev/Clean/CleanCommandAbstract.php @@ -1,7 +1,5 @@ - * @copyright 2007-2019 Hennes Hervé + * @copyright since 2016 Hennes Hervé * @license https://opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0) - * http://www.h-hennes.fr/blog/ + * https://github.com/nenes25/prestashop_console + * https://www.h-hennes.fr/blog/ */ namespace PrestashopConsole\Command\Dev\Clean; diff --git a/src/PrestashopConsole/Command/Dev/Cron/ListCronCommand.php b/src/PrestashopConsole/Command/Dev/Cron/ListCronCommand.php index 3ecb04c..07b543f 100644 --- a/src/PrestashopConsole/Command/Dev/Cron/ListCronCommand.php +++ b/src/PrestashopConsole/Command/Dev/Cron/ListCronCommand.php @@ -1,7 +1,5 @@ - * @copyright 2007-2019 Hennes Hervé + * @copyright since 2016 Hennes Hervé * @license https://opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0) - * http://www.h-hennes.fr/blog/ + * https://github.com/nenes25/prestashop_console + * https://www.h-hennes.fr/blog/ */ namespace PrestashopConsole\Command\Dev\Cron; diff --git a/src/PrestashopConsole/Command/Dev/Cron/RunCronCommand.php b/src/PrestashopConsole/Command/Dev/Cron/RunCronCommand.php index e7e2095..6a8818c 100644 --- a/src/PrestashopConsole/Command/Dev/Cron/RunCronCommand.php +++ b/src/PrestashopConsole/Command/Dev/Cron/RunCronCommand.php @@ -1,7 +1,5 @@ - * @copyright 2007-2019 Hennes Hervé + * @copyright since 2016 Hennes Hervé * @license https://opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0) - * http://www.h-hennes.fr/blog/ + * https://github.com/nenes25/prestashop_console + * https://www.h-hennes.fr/blog/ */ namespace PrestashopConsole\Command\Dev\Cron; diff --git a/src/PrestashopConsole/Command/Dev/DevModeCommand.php b/src/PrestashopConsole/Command/Dev/DevModeCommand.php index 93e27c9..319c851 100644 --- a/src/PrestashopConsole/Command/Dev/DevModeCommand.php +++ b/src/PrestashopConsole/Command/Dev/DevModeCommand.php @@ -1,7 +1,5 @@ - * @copyright 2007-2019 Hennes Hervé - * @copyright 2007-2019 Monterisi Sébastien + * @author Hennes Hervé + * @copyright since 2016 Hennes Hervé * @license https://opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0) - * http://www.h-hennes.fr/blog/ + * https://github.com/nenes25/prestashop_console + * https://www.h-hennes.fr/blog/ */ namespace PrestashopConsole\Command\Dev; diff --git a/src/PrestashopConsole/Command/Dev/ListOverridesCommand.php b/src/PrestashopConsole/Command/Dev/ListOverridesCommand.php index 8385bb9..05b7369 100644 --- a/src/PrestashopConsole/Command/Dev/ListOverridesCommand.php +++ b/src/PrestashopConsole/Command/Dev/ListOverridesCommand.php @@ -1,7 +1,5 @@ - * @copyright 2007-2019 Hennes Hervé + * @copyright since 2016 Hennes Hervé * @license https://opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0) - * http://www.h-hennes.fr/blog/ + * https://github.com/nenes25/prestashop_console + * https://www.h-hennes.fr/blog/ */ namespace PrestashopConsole\Command\Dev; diff --git a/src/PrestashopConsole/Command/Hook/ListCommand.php b/src/PrestashopConsole/Command/Hook/ListCommand.php index d1e77aa..1dd2229 100644 --- a/src/PrestashopConsole/Command/Hook/ListCommand.php +++ b/src/PrestashopConsole/Command/Hook/ListCommand.php @@ -1,8 +1,5 @@ - * @copyright 2007-2020 Hennes Hervé + * @copyright since 2016 Hennes Hervé * @license https://opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0) - * http://www.h-hennes.fr/blog/ + * https://github.com/nenes25/prestashop_console + * https://www.h-hennes.fr/blog/ */ namespace PrestashopConsole\Command\Hook; diff --git a/src/PrestashopConsole/Command/Hook/ModuleCommand.php b/src/PrestashopConsole/Command/Hook/ModuleCommand.php index f199c04..9ff29dd 100644 --- a/src/PrestashopConsole/Command/Hook/ModuleCommand.php +++ b/src/PrestashopConsole/Command/Hook/ModuleCommand.php @@ -1,8 +1,5 @@ - * @copyright 2007-2020 Hennes Hervé + * @copyright since 2016 Hennes Hervé * @license https://opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0) - * http://www.h-hennes.fr/blog/ + * https://github.com/nenes25/prestashop_console + * https://www.h-hennes.fr/blog/ */ namespace PrestashopConsole\Command\Hook; diff --git a/src/PrestashopConsole/Command/Images/ExportCommand.php b/src/PrestashopConsole/Command/Images/ExportCommand.php index 6b11dc9..c399843 100644 --- a/src/PrestashopConsole/Command/Images/ExportCommand.php +++ b/src/PrestashopConsole/Command/Images/ExportCommand.php @@ -1,7 +1,5 @@ - * @copyright 2007-2019 Hennes Hervé + * @copyright since 2016 Hennes Hervé * @license https://opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0) - * http://www.h-hennes.fr/blog/ + * https://github.com/nenes25/prestashop_console + * https://www.h-hennes.fr/blog/ */ namespace PrestashopConsole\Command\Images; diff --git a/src/PrestashopConsole/Command/Images/GenerateAbstract.php b/src/PrestashopConsole/Command/Images/GenerateAbstract.php index 535969b..efd7d2c 100644 --- a/src/PrestashopConsole/Command/Images/GenerateAbstract.php +++ b/src/PrestashopConsole/Command/Images/GenerateAbstract.php @@ -1,7 +1,5 @@ - * @copyright 2007-2020 Hennes Hervé + * @copyright since 2016 Hennes Hervé * @license https://opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0) - * http://www.h-hennes.fr/blog/ - * - * This code is the same as in the projet FOP_Console + * https://github.com/nenes25/prestashop_console + * https://www.h-hennes.fr/blog/ */ namespace PrestashopConsole\Command\Images; diff --git a/src/PrestashopConsole/Command/Images/GenerateCategoriesCommand.php b/src/PrestashopConsole/Command/Images/GenerateCategoriesCommand.php index e6b7005..078a1db 100644 --- a/src/PrestashopConsole/Command/Images/GenerateCategoriesCommand.php +++ b/src/PrestashopConsole/Command/Images/GenerateCategoriesCommand.php @@ -1,7 +1,5 @@ - * @copyright 2007-2020 Hennes Hervé + * @copyright since 2016 Hennes Hervé * @license https://opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0) - * http://www.h-hennes.fr/blog/ + * https://github.com/nenes25/prestashop_console + * https://www.h-hennes.fr/blog/ */ namespace PrestashopConsole\Command\Images; diff --git a/src/PrestashopConsole/Command/Images/GenerateManufacturersCommand.php b/src/PrestashopConsole/Command/Images/GenerateManufacturersCommand.php index 26fcb5c..af68d8d 100644 --- a/src/PrestashopConsole/Command/Images/GenerateManufacturersCommand.php +++ b/src/PrestashopConsole/Command/Images/GenerateManufacturersCommand.php @@ -1,7 +1,5 @@ - * @copyright 2007-2020 Hennes Hervé + * @copyright since 2016 Hennes Hervé * @license https://opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0) - * http://www.h-hennes.fr/blog/ + * https://github.com/nenes25/prestashop_console + * https://www.h-hennes.fr/blog/ */ namespace PrestashopConsole\Command\Images; diff --git a/src/PrestashopConsole/Command/Images/GenerateProductsCommand.php b/src/PrestashopConsole/Command/Images/GenerateProductsCommand.php index ff17d90..f3a56cf 100644 --- a/src/PrestashopConsole/Command/Images/GenerateProductsCommand.php +++ b/src/PrestashopConsole/Command/Images/GenerateProductsCommand.php @@ -1,7 +1,5 @@ - * @copyright 2007-2020 Hennes Hervé + * @copyright since 2016 Hennes Hervé * @license https://opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0) - * http://www.h-hennes.fr/blog/ + * https://github.com/nenes25/prestashop_console + * https://www.h-hennes.fr/blog/ */ namespace PrestashopConsole\Command\Images; diff --git a/src/PrestashopConsole/Command/Images/GenerateStoresCommand.php b/src/PrestashopConsole/Command/Images/GenerateStoresCommand.php index c4a0965..6fc5f42 100644 --- a/src/PrestashopConsole/Command/Images/GenerateStoresCommand.php +++ b/src/PrestashopConsole/Command/Images/GenerateStoresCommand.php @@ -1,7 +1,5 @@ - * @copyright 2007-2020 Hennes Hervé + * @copyright since 2016 Hennes Hervé * @license https://opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0) - * http://www.h-hennes.fr/blog/ + * https://github.com/nenes25/prestashop_console + * https://www.h-hennes.fr/blog/ */ namespace PrestashopConsole\Command\Images; diff --git a/src/PrestashopConsole/Command/Images/GenerateSuppliersCommand.php b/src/PrestashopConsole/Command/Images/GenerateSuppliersCommand.php index e81559c..9aa8012 100644 --- a/src/PrestashopConsole/Command/Images/GenerateSuppliersCommand.php +++ b/src/PrestashopConsole/Command/Images/GenerateSuppliersCommand.php @@ -1,7 +1,5 @@ - * @copyright 2007-2020 Hennes Hervé + * @copyright since 2016 Hennes Hervé * @license https://opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0) - * http://www.h-hennes.fr/blog/ + * https://github.com/nenes25/prestashop_console + * https://www.h-hennes.fr/blog/ */ namespace PrestashopConsole\Command\Images; diff --git a/src/PrestashopConsole/Command/Install/InfoCommand.php b/src/PrestashopConsole/Command/Install/InfoCommand.php index 9e96faa..2c035c7 100644 --- a/src/PrestashopConsole/Command/Install/InfoCommand.php +++ b/src/PrestashopConsole/Command/Install/InfoCommand.php @@ -1,7 +1,5 @@ - * @copyright 2007-2019 Hennes Hervé + * @copyright since 2016 Hennes Hervé * @license https://opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0) - * http://www.h-hennes.fr/blog/ + * https://github.com/nenes25/prestashop_console + * https://www.h-hennes.fr/blog/ */ namespace PrestashopConsole\Command\Install; diff --git a/src/PrestashopConsole/Command/Module/DisableCommand.php b/src/PrestashopConsole/Command/Module/DisableCommand.php index 276f75f..4cb48b4 100644 --- a/src/PrestashopConsole/Command/Module/DisableCommand.php +++ b/src/PrestashopConsole/Command/Module/DisableCommand.php @@ -1,7 +1,5 @@ - * @copyright 2007-2019 Hennes Hervé + * @copyright since 2016 Hennes Hervé * @license https://opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0) - * http://www.h-hennes.fr/blog/ + * https://github.com/nenes25/prestashop_console + * https://www.h-hennes.fr/blog/ */ namespace PrestashopConsole\Command\Module; diff --git a/src/PrestashopConsole/Command/Module/EnableCommand.php b/src/PrestashopConsole/Command/Module/EnableCommand.php index b02c007..6858385 100644 --- a/src/PrestashopConsole/Command/Module/EnableCommand.php +++ b/src/PrestashopConsole/Command/Module/EnableCommand.php @@ -1,7 +1,5 @@ - * @copyright 2007-2019 Hennes Hervé + * @copyright since 2016 Hennes Hervé * @license https://opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0) - * http://www.h-hennes.fr/blog/ + * https://github.com/nenes25/prestashop_console + * https://www.h-hennes.fr/blog/ */ namespace PrestashopConsole\Command\Module; diff --git a/src/PrestashopConsole/Command/Module/Generate/ControllerCommand.php b/src/PrestashopConsole/Command/Module/Generate/ControllerCommand.php index 051e1d6..f65f633 100644 --- a/src/PrestashopConsole/Command/Module/Generate/ControllerCommand.php +++ b/src/PrestashopConsole/Command/Module/Generate/ControllerCommand.php @@ -1,7 +1,5 @@ - * @copyright 2007-2019 Hennes Hervé + * @copyright since 2016 Hennes Hervé * @license https://opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0) - * http://www.h-hennes.fr/blog/ + * https://github.com/nenes25/prestashop_console + * https://www.h-hennes.fr/blog/ */ namespace PrestashopConsole\Command\Module\Generate; diff --git a/src/PrestashopConsole/Command/Module/Generate/ModuleCommand.php b/src/PrestashopConsole/Command/Module/Generate/ModuleCommand.php index 67d6867..2b5ce99 100644 --- a/src/PrestashopConsole/Command/Module/Generate/ModuleCommand.php +++ b/src/PrestashopConsole/Command/Module/Generate/ModuleCommand.php @@ -1,7 +1,5 @@ - * @copyright 2007-2021 Hennes Hervé + * @copyright since 2016 Hennes Hervé * @license https://opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0) - * https://github.com/nenes25/prestashop_console* + * https://github.com/nenes25/prestashop_console * https://www.h-hennes.fr/blog/ */ diff --git a/src/PrestashopConsole/Command/Module/Generate/ModuleHeader.php b/src/PrestashopConsole/Command/Module/Generate/ModuleHeader.php index 73aed63..0ce6301 100644 --- a/src/PrestashopConsole/Command/Module/Generate/ModuleHeader.php +++ b/src/PrestashopConsole/Command/Module/Generate/ModuleHeader.php @@ -1,17 +1,20 @@ + * @copyright since 2016 Hennes Hervé + * @license https://opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0) + * https://github.com/nenes25/prestashop_console + * https://www.h-hennes.fr/blog/ */ namespace PrestashopConsole\Command\Module\Generate; diff --git a/src/PrestashopConsole/Command/Module/Generate/ObjectModelCommand.php b/src/PrestashopConsole/Command/Module/Generate/ObjectModelCommand.php index 73bf033..c48c806 100644 --- a/src/PrestashopConsole/Command/Module/Generate/ObjectModelCommand.php +++ b/src/PrestashopConsole/Command/Module/Generate/ObjectModelCommand.php @@ -1,7 +1,5 @@ - * @copyright 2007-2019 Hennes Hervé + * @copyright since 2016 Hennes Hervé * @license https://opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0) - * http://www.h-hennes.fr/blog/ + * https://github.com/nenes25/prestashop_console + * https://www.h-hennes.fr/blog/ */ namespace PrestashopConsole\Command\Module\Generate; diff --git a/src/PrestashopConsole/Command/Module/Generate/UpgradeCommand.php b/src/PrestashopConsole/Command/Module/Generate/UpgradeCommand.php index 19d4aba..ba81742 100644 --- a/src/PrestashopConsole/Command/Module/Generate/UpgradeCommand.php +++ b/src/PrestashopConsole/Command/Module/Generate/UpgradeCommand.php @@ -1,17 +1,20 @@ + * @copyright since 2016 Hennes Hervé + * @license https://opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0) + * https://github.com/nenes25/prestashop_console + * https://www.h-hennes.fr/blog/ */ namespace PrestashopConsole\Command\Module\Generate; diff --git a/src/PrestashopConsole/Command/Module/Hook/AddModuleHooksCommand.php b/src/PrestashopConsole/Command/Module/Hook/AddModuleHooksCommand.php index 8fd69fe..ca0b6e2 100644 --- a/src/PrestashopConsole/Command/Module/Hook/AddModuleHooksCommand.php +++ b/src/PrestashopConsole/Command/Module/Hook/AddModuleHooksCommand.php @@ -1,7 +1,5 @@ - * @copyright 2007-2019 Hennes Hervé + * @copyright since 2016 Hennes Hervé * @license https://opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0) - * http://www.h-hennes.fr/blog/ + * https://github.com/nenes25/prestashop_console + * https://www.h-hennes.fr/blog/ */ namespace PrestashopConsole\Command\Module\Hook; diff --git a/src/PrestashopConsole/Command/Module/Hook/ListModuleHooksCommand.php b/src/PrestashopConsole/Command/Module/Hook/ListModuleHooksCommand.php index c8e03f3..26d3da3 100644 --- a/src/PrestashopConsole/Command/Module/Hook/ListModuleHooksCommand.php +++ b/src/PrestashopConsole/Command/Module/Hook/ListModuleHooksCommand.php @@ -1,7 +1,5 @@ - * @copyright 2007-2019 Hennes Hervé + * @copyright since 2016 Hennes Hervé * @license https://opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0) - * http://www.h-hennes.fr/blog/ + * https://github.com/nenes25/prestashop_console + * https://www.h-hennes.fr/blog/ */ namespace PrestashopConsole\Command\Module\Hook; diff --git a/src/PrestashopConsole/Command/Module/Hook/RemoveModuleHooksCommand.php b/src/PrestashopConsole/Command/Module/Hook/RemoveModuleHooksCommand.php index ca84ff2..7bf6b61 100644 --- a/src/PrestashopConsole/Command/Module/Hook/RemoveModuleHooksCommand.php +++ b/src/PrestashopConsole/Command/Module/Hook/RemoveModuleHooksCommand.php @@ -1,7 +1,5 @@ - * @copyright 2007-2019 Hennes Hervé + * @copyright since 2016 Hennes Hervé * @license https://opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0) - * http://www.h-hennes.fr/blog/ + * https://github.com/nenes25/prestashop_console + * https://www.h-hennes.fr/blog/ */ namespace PrestashopConsole\Command\Module\Hook; diff --git a/src/PrestashopConsole/Command/Module/InstallCommand.php b/src/PrestashopConsole/Command/Module/InstallCommand.php index c5d427c..72c8980 100644 --- a/src/PrestashopConsole/Command/Module/InstallCommand.php +++ b/src/PrestashopConsole/Command/Module/InstallCommand.php @@ -1,7 +1,5 @@ - * @copyright 2007-2019 Hennes Hervé + * @copyright since 2016 Hennes Hervé * @license https://opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0) - * http://www.h-hennes.fr/blog/ + * https://github.com/nenes25/prestashop_console + * https://www.h-hennes.fr/blog/ */ namespace PrestashopConsole\Command\Module; diff --git a/src/PrestashopConsole/Command/Module/ListCommand.php b/src/PrestashopConsole/Command/Module/ListCommand.php index bfcd067..5969579 100644 --- a/src/PrestashopConsole/Command/Module/ListCommand.php +++ b/src/PrestashopConsole/Command/Module/ListCommand.php @@ -1,8 +1,5 @@ - * @author Monterisi Sébastien - * @copyright 2007-2019 Hennes Hervé - 2019-2019 Monterisi Sébastien + * @copyright since 2016 Hennes Hervé * @license https://opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0) - * http://www.h-hennes.fr/blog/ + * https://github.com/nenes25/prestashop_console + * https://www.h-hennes.fr/blog/ */ namespace PrestashopConsole\Command\Module; diff --git a/src/PrestashopConsole/Command/Module/ResetCommand.php b/src/PrestashopConsole/Command/Module/ResetCommand.php index 9bf50c0..bbecce8 100644 --- a/src/PrestashopConsole/Command/Module/ResetCommand.php +++ b/src/PrestashopConsole/Command/Module/ResetCommand.php @@ -1,7 +1,5 @@ - * @copyright 2007-2019 Hennes Hervé + * @copyright since 2016 Hennes Hervé * @license https://opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0) - * http://www.h-hennes.fr/blog/ + * https://github.com/nenes25/prestashop_console + * https://www.h-hennes.fr/blog/ */ namespace PrestashopConsole\Command\Module; diff --git a/src/PrestashopConsole/Command/Module/Tab/AddCommand.php b/src/PrestashopConsole/Command/Module/Tab/AddCommand.php index 1a0cb40..fc3d947 100644 --- a/src/PrestashopConsole/Command/Module/Tab/AddCommand.php +++ b/src/PrestashopConsole/Command/Module/Tab/AddCommand.php @@ -1,7 +1,5 @@ - * @copyright 2007-2019 Hennes Hervé + * @copyright since 2016 Hennes Hervé * @license https://opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0) - * http://www.h-hennes.fr/blog/ + * https://github.com/nenes25/prestashop_console + * https://www.h-hennes.fr/blog/ */ namespace PrestashopConsole\Command\Module\Tab; diff --git a/src/PrestashopConsole/Command/Module/Tab/ListCommand.php b/src/PrestashopConsole/Command/Module/Tab/ListCommand.php index 2cbee32..9bd56d9 100644 --- a/src/PrestashopConsole/Command/Module/Tab/ListCommand.php +++ b/src/PrestashopConsole/Command/Module/Tab/ListCommand.php @@ -1,7 +1,5 @@ - * @copyright 2007-2019 Hennes Hervé + * @copyright since 2016 Hennes Hervé * @license https://opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0) - * http://www.h-hennes.fr/blog/ + * https://github.com/nenes25/prestashop_console + * https://www.h-hennes.fr/blog/ */ namespace PrestashopConsole\Command\Module\Tab; diff --git a/src/PrestashopConsole/Command/Module/Tab/RemoveCommand.php b/src/PrestashopConsole/Command/Module/Tab/RemoveCommand.php index ed647eb..2ff0fca 100644 --- a/src/PrestashopConsole/Command/Module/Tab/RemoveCommand.php +++ b/src/PrestashopConsole/Command/Module/Tab/RemoveCommand.php @@ -1,7 +1,5 @@ - * @copyright 2007-2019 Hennes Hervé + * @copyright since 2016 Hennes Hervé * @license https://opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0) - * http://www.h-hennes.fr/blog/ + * https://github.com/nenes25/prestashop_console + * https://www.h-hennes.fr/blog/ */ namespace PrestashopConsole\Command\Module\Tab; diff --git a/src/PrestashopConsole/Command/Module/UninstallCommand.php b/src/PrestashopConsole/Command/Module/UninstallCommand.php index eee27d8..69d5b2f 100644 --- a/src/PrestashopConsole/Command/Module/UninstallCommand.php +++ b/src/PrestashopConsole/Command/Module/UninstallCommand.php @@ -1,7 +1,5 @@ - * @copyright 2007-2021 Hennes Hervé + * @copyright since 2016 Hennes Hervé * @license https://opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0) - * https://github.com/nenes25/prestashop_console* + * https://github.com/nenes25/prestashop_console * https://www.h-hennes.fr/blog/ */ diff --git a/src/PrestashopConsole/Command/Parameters/Generate/HtaccessCommand.php b/src/PrestashopConsole/Command/Parameters/Generate/HtaccessCommand.php index e9df187..3f34e19 100644 --- a/src/PrestashopConsole/Command/Parameters/Generate/HtaccessCommand.php +++ b/src/PrestashopConsole/Command/Parameters/Generate/HtaccessCommand.php @@ -1,7 +1,5 @@ - * @copyright 2007-2021 Hennes Hervé + * @copyright since 2016 Hennes Hervé * @license https://opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0) - * https://github.com/nenes25/prestashop_console* + * https://github.com/nenes25/prestashop_console * https://www.h-hennes.fr/blog/ */ diff --git a/src/PrestashopConsole/Command/Parameters/Generate/RobotsTxtCommand.php b/src/PrestashopConsole/Command/Parameters/Generate/RobotsTxtCommand.php index 17497ea..bcb42ff 100644 --- a/src/PrestashopConsole/Command/Parameters/Generate/RobotsTxtCommand.php +++ b/src/PrestashopConsole/Command/Parameters/Generate/RobotsTxtCommand.php @@ -1,7 +1,5 @@ - * @copyright 2007-2021 Hennes Hervé + * @copyright since 2016 Hennes Hervé * @license https://opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0) - * https://github.com/nenes25/prestashop_console* + * https://github.com/nenes25/prestashop_console * https://www.h-hennes.fr/blog/ */ diff --git a/src/PrestashopConsole/Command/Preferences/MaintenanceCommand.php b/src/PrestashopConsole/Command/Preferences/MaintenanceCommand.php index 854b188..70c4a77 100644 --- a/src/PrestashopConsole/Command/Preferences/MaintenanceCommand.php +++ b/src/PrestashopConsole/Command/Preferences/MaintenanceCommand.php @@ -1,7 +1,5 @@ - * @copyright 2007-2021 Hennes Hervé + * @copyright since 2016 Hennes Hervé * @license https://opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0) - * https://github.com/nenes25/prestashop_console* + * https://github.com/nenes25/prestashop_console * https://www.h-hennes.fr/blog/ */ diff --git a/src/PrestashopConsole/Command/Preferences/OverrideCommand.php b/src/PrestashopConsole/Command/Preferences/OverrideCommand.php index 7c84504..d70a005 100644 --- a/src/PrestashopConsole/Command/Preferences/OverrideCommand.php +++ b/src/PrestashopConsole/Command/Preferences/OverrideCommand.php @@ -1,7 +1,5 @@ - * @copyright 2007-2019 Hennes Hervé + * @copyright since 2016 Hennes Hervé * @license https://opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0) - * http://www.h-hennes.fr/blog/ + * https://github.com/nenes25/prestashop_console + * https://www.h-hennes.fr/blog/ */ namespace PrestashopConsole\Command\Preferences; diff --git a/src/PrestashopConsole/Command/Preferences/Search/IndexCommand.php b/src/PrestashopConsole/Command/Preferences/Search/IndexCommand.php index 95784f7..3cef273 100644 --- a/src/PrestashopConsole/Command/Preferences/Search/IndexCommand.php +++ b/src/PrestashopConsole/Command/Preferences/Search/IndexCommand.php @@ -1,7 +1,5 @@ - * @copyright 2007-2021 Hennes Hervé + * @copyright since 2016 Hennes Hervé * @license https://opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0) - * https://github.com/nenes25/prestashop_console* + * https://github.com/nenes25/prestashop_console * https://www.h-hennes.fr/blog/ */ diff --git a/src/PrestashopConsole/Command/Preferences/UrlRewriteCommand.php b/src/PrestashopConsole/Command/Preferences/UrlRewriteCommand.php index a270482..dba6b8e 100644 --- a/src/PrestashopConsole/Command/Preferences/UrlRewriteCommand.php +++ b/src/PrestashopConsole/Command/Preferences/UrlRewriteCommand.php @@ -1,7 +1,5 @@ - * @copyright 2007-2019 Hennes Hervé + * @copyright since 2016 Hennes Hervé * @license https://opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0) - * http://www.h-hennes.fr/blog/ + * https://github.com/nenes25/prestashop_console + * https://www.h-hennes.fr/blog/ */ namespace PrestashopConsole\Command\Preferences; diff --git a/src/PrestashopConsole/Command/PrestashopConsoleAbstractCmd.php b/src/PrestashopConsole/Command/PrestashopConsoleAbstractCmd.php index 0cf72c1..cfcb259 100644 --- a/src/PrestashopConsole/Command/PrestashopConsoleAbstractCmd.php +++ b/src/PrestashopConsole/Command/PrestashopConsoleAbstractCmd.php @@ -1,7 +1,5 @@ - * @copyright 2007-2019 Hennes Hervé + * @copyright since 2016 Hennes Hervé * @license https://opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0) - * http://www.h-hennes.fr/blog/ + * https://github.com/nenes25/prestashop_console + * https://www.h-hennes.fr/blog/ */ namespace PrestashopConsole\Command; diff --git a/src/PrestashopConsole/Command/Webservice/CreateKeyCommand.php b/src/PrestashopConsole/Command/Webservice/CreateKeyCommand.php index 8cb3e48..7fa18eb 100644 --- a/src/PrestashopConsole/Command/Webservice/CreateKeyCommand.php +++ b/src/PrestashopConsole/Command/Webservice/CreateKeyCommand.php @@ -1,8 +1,5 @@ - * @copyright 2007-2020 Hennes Hervé + * @copyright since 2016 Hennes Hervé * @license https://opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0) - * http://www.h-hennes.fr/blog/ + * https://github.com/nenes25/prestashop_console + * https://www.h-hennes.fr/blog/ */ namespace PrestashopConsole\Command\Webservice; diff --git a/src/PrestashopConsole/Command/Webservice/DeleteKeyCommand.php b/src/PrestashopConsole/Command/Webservice/DeleteKeyCommand.php index 6d0ecde..c3d737d 100644 --- a/src/PrestashopConsole/Command/Webservice/DeleteKeyCommand.php +++ b/src/PrestashopConsole/Command/Webservice/DeleteKeyCommand.php @@ -1,8 +1,5 @@ - * @copyright 2007-2020 Hennes Hervé + * @copyright since 2016 Hennes Hervé * @license https://opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0) - * http://www.h-hennes.fr/blog/ + * https://github.com/nenes25/prestashop_console + * https://www.h-hennes.fr/blog/ */ namespace PrestashopConsole\Command\Webservice; diff --git a/src/PrestashopConsole/PrestashopConsoleApplication.php b/src/PrestashopConsole/PrestashopConsoleApplication.php index e3bef62..ee92cd2 100644 --- a/src/PrestashopConsole/PrestashopConsoleApplication.php +++ b/src/PrestashopConsole/PrestashopConsoleApplication.php @@ -1,7 +1,5 @@ - * @copyright 2007-2019 Hennes Hervé + * @copyright since 2016 Hennes Hervé * @license https://opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0) - * http://www.h-hennes.fr/blog/ + * https://github.com/nenes25/prestashop_console + * https://www.h-hennes.fr/blog/ */ namespace PrestashopConsole; diff --git a/tests/PrestashopConsole/Command/Admin/ProfilesListCommandTest.php b/tests/PrestashopConsole/Command/Admin/ProfilesListCommandTest.php index e37e676..f52f5b1 100644 --- a/tests/PrestashopConsole/Command/Admin/ProfilesListCommandTest.php +++ b/tests/PrestashopConsole/Command/Admin/ProfilesListCommandTest.php @@ -1,4 +1,21 @@ + * @copyright since 2016 Hennes Hervé + * @license https://opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0) + * https://github.com/nenes25/prestashop_console + * https://www.h-hennes.fr/blog/ + */ use PrestashopConsole\Command\Admin\ProfilesListCommand; use Symfony\Component\Console\Tester\CommandTester; diff --git a/tests/PrestashopConsole/Command/Admin/User/CreateAdminCommandTest.php b/tests/PrestashopConsole/Command/Admin/User/CreateAdminCommandTest.php index 3717be9..ba8cf93 100644 --- a/tests/PrestashopConsole/Command/Admin/User/CreateAdminCommandTest.php +++ b/tests/PrestashopConsole/Command/Admin/User/CreateAdminCommandTest.php @@ -1,7 +1,5 @@ - * @copyright 2007-2021 Hennes Hervé + * @copyright since 2016 Hennes Hervé * @license https://opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0) - * https://github.com/nenes25/prestashop_console* + * https://github.com/nenes25/prestashop_console * https://www.h-hennes.fr/blog/ - * */ - use PrestashopConsole\Command\Admin\User\CreateCommand; use Symfony\Component\Console\Tester\CommandTester; use PHPUnit\Framework\TestCase; diff --git a/tests/PrestashopConsole/Command/Admin/User/ListAdminUserCommandTest.php b/tests/PrestashopConsole/Command/Admin/User/ListAdminUserCommandTest.php index 6f7049b..3730a57 100644 --- a/tests/PrestashopConsole/Command/Admin/User/ListAdminUserCommandTest.php +++ b/tests/PrestashopConsole/Command/Admin/User/ListAdminUserCommandTest.php @@ -1,4 +1,21 @@ + * @copyright since 2016 Hennes Hervé + * @license https://opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0) + * https://github.com/nenes25/prestashop_console + * https://www.h-hennes.fr/blog/ + */ use PrestashopConsole\Command\Admin\User\ListCommand; use Symfony\Component\Console\Tester\CommandTester; diff --git a/tests/PrestashopConsole/Command/Admin/User/ListCommandTest.php b/tests/PrestashopConsole/Command/Admin/User/ListCommandTest.php index 325caeb..ed77be2 100644 --- a/tests/PrestashopConsole/Command/Admin/User/ListCommandTest.php +++ b/tests/PrestashopConsole/Command/Admin/User/ListCommandTest.php @@ -1,7 +1,5 @@ - * @copyright 2007-2021 Hennes Hervé + * @copyright since 2016 Hennes Hervé * @license https://opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0) - * https://github.com/nenes25/prestashop_console* + * https://github.com/nenes25/prestashop_console * https://www.h-hennes.fr/blog/ - * */ use PrestashopConsole\Command\Admin\User\ListCommand; diff --git a/tests/PrestashopConsole/Command/Admin/User/PasswordCommandTest.php b/tests/PrestashopConsole/Command/Admin/User/PasswordCommandTest.php index 74ab26d..d6da814 100644 --- a/tests/PrestashopConsole/Command/Admin/User/PasswordCommandTest.php +++ b/tests/PrestashopConsole/Command/Admin/User/PasswordCommandTest.php @@ -1,7 +1,5 @@ - * @copyright 2007-2021 Hennes Hervé + * @copyright since 2016 Hennes Hervé * @license https://opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0) - * https://github.com/nenes25/prestashop_console* + * https://github.com/nenes25/prestashop_console * https://www.h-hennes.fr/blog/ - * */ use PrestashopConsole\Command\Admin\User\PasswordCommand; diff --git a/tests/PrestashopConsole/Command/Analyze/GlobalCommandTest.php b/tests/PrestashopConsole/Command/Analyze/GlobalCommandTest.php index 70d6b5e..659647a 100644 --- a/tests/PrestashopConsole/Command/Analyze/GlobalCommandTest.php +++ b/tests/PrestashopConsole/Command/Analyze/GlobalCommandTest.php @@ -13,7 +13,6 @@ * @author Hennes Hervé * @copyright since 2016 Hennes Hervé * @license https://opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0) - * * https://github.com/nenes25/prestashop_console * https://www.h-hennes.fr/blog/ */ diff --git a/tests/PrestashopConsole/Command/Analyze/ListCarriersCommandTest.php b/tests/PrestashopConsole/Command/Analyze/ListCarriersCommandTest.php index 6d76a35..a75f524 100644 --- a/tests/PrestashopConsole/Command/Analyze/ListCarriersCommandTest.php +++ b/tests/PrestashopConsole/Command/Analyze/ListCarriersCommandTest.php @@ -1,4 +1,21 @@ + * @copyright since 2016 Hennes Hervé + * @license https://opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0) + * https://github.com/nenes25/prestashop_console + * https://www.h-hennes.fr/blog/ + */ use PrestashopConsole\Command\Analyze\ListCarriersCommand; use Symfony\Component\Console\Tester\CommandTester; diff --git a/tests/PrestashopConsole/Command/Analyze/ListPaymentsCommandTest.php b/tests/PrestashopConsole/Command/Analyze/ListPaymentsCommandTest.php index 54dabeb..2ce764a 100644 --- a/tests/PrestashopConsole/Command/Analyze/ListPaymentsCommandTest.php +++ b/tests/PrestashopConsole/Command/Analyze/ListPaymentsCommandTest.php @@ -1,4 +1,21 @@ + * @copyright since 2016 Hennes Hervé + * @license https://opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0) + * https://github.com/nenes25/prestashop_console + * https://www.h-hennes.fr/blog/ + */ use PrestashopConsole\Command\Analyze\ListPaymentsCommand; use Symfony\Component\Console\Tester\CommandTester; diff --git a/tests/PrestashopConsole/Command/Analyze/TablesSizeCommandTest.php b/tests/PrestashopConsole/Command/Analyze/TablesSizeCommandTest.php index c903e48..84b3848 100644 --- a/tests/PrestashopConsole/Command/Analyze/TablesSizeCommandTest.php +++ b/tests/PrestashopConsole/Command/Analyze/TablesSizeCommandTest.php @@ -13,7 +13,6 @@ * @author Hennes Hervé * @copyright since 2016 Hennes Hervé * @license https://opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0) - * * https://github.com/nenes25/prestashop_console * https://www.h-hennes.fr/blog/ */ diff --git a/tests/PrestashopConsole/Command/Analyze/WebsiteCommandTest.php b/tests/PrestashopConsole/Command/Analyze/WebsiteCommandTest.php index b7a82c0..eada7a8 100644 --- a/tests/PrestashopConsole/Command/Analyze/WebsiteCommandTest.php +++ b/tests/PrestashopConsole/Command/Analyze/WebsiteCommandTest.php @@ -1,7 +1,5 @@ - * @copyright 2007-2021 Hennes Hervé + * @copyright since 2016 Hennes Hervé * @license https://opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0) - * http://www.h-hennes.fr/blog/ + * https://github.com/nenes25/prestashop_console + * https://www.h-hennes.fr/blog/ */ use PHPUnit\Framework\TestCase; diff --git a/tests/PrestashopConsole/Command/Cache/CleanCommandTest.php b/tests/PrestashopConsole/Command/Cache/CleanCommandTest.php index 7f381c0..e5edf1d 100644 --- a/tests/PrestashopConsole/Command/Cache/CleanCommandTest.php +++ b/tests/PrestashopConsole/Command/Cache/CleanCommandTest.php @@ -1,7 +1,5 @@ - * @copyright 2007-2021 Hennes Hervé + * @copyright since 2016 Hennes Hervé * @license https://opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0) - * https://github.com/nenes25/prestashop_console* + * https://github.com/nenes25/prestashop_console * https://www.h-hennes.fr/blog/ - * */ use PrestashopConsole\Command\Cache\CleanCommand; diff --git a/tests/PrestashopConsole/Command/Cache/FlushCommandTest.php b/tests/PrestashopConsole/Command/Cache/FlushCommandTest.php index a02f2d9..6bec7d0 100644 --- a/tests/PrestashopConsole/Command/Cache/FlushCommandTest.php +++ b/tests/PrestashopConsole/Command/Cache/FlushCommandTest.php @@ -1,7 +1,5 @@ - * @copyright 2007-2021 Hennes Hervé + * @copyright since 2016 Hennes Hervé * @license https://opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0) - * https://github.com/nenes25/prestashop_console* + * https://github.com/nenes25/prestashop_console * https://www.h-hennes.fr/blog/ - * */ use PrestashopConsole\Command\Cache\FlushCommand; diff --git a/tests/PrestashopConsole/Command/Cache/MediaCommandTest.php b/tests/PrestashopConsole/Command/Cache/MediaCommandTest.php index 030ac50..2dba667 100644 --- a/tests/PrestashopConsole/Command/Cache/MediaCommandTest.php +++ b/tests/PrestashopConsole/Command/Cache/MediaCommandTest.php @@ -1,7 +1,5 @@ - * @copyright 2007-2021 Hennes Hervé + * @copyright since 2016 Hennes Hervé * @license https://opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0) - * https://github.com/nenes25/prestashop_console* + * https://github.com/nenes25/prestashop_console * https://www.h-hennes.fr/blog/ - * */ use PrestashopConsole\Command\Cache\MediaCommand; diff --git a/tests/PrestashopConsole/Command/Cache/Smarty/ClearCommandTest.php b/tests/PrestashopConsole/Command/Cache/Smarty/ClearCommandTest.php index da035d8..245731e 100644 --- a/tests/PrestashopConsole/Command/Cache/Smarty/ClearCommandTest.php +++ b/tests/PrestashopConsole/Command/Cache/Smarty/ClearCommandTest.php @@ -1,7 +1,5 @@ - * @copyright 2007-2021 Hennes Hervé + * @copyright since 2016 Hennes Hervé * @license https://opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0) - * https://github.com/nenes25/prestashop_console* + * https://github.com/nenes25/prestashop_console * https://www.h-hennes.fr/blog/ - * */ use PrestashopConsole\Command\Cache\Smarty\ClearCommand; diff --git a/tests/PrestashopConsole/Command/Cache/Smarty/ConfigureCommandTest.php b/tests/PrestashopConsole/Command/Cache/Smarty/ConfigureCommandTest.php index b81535b..cb6ea60 100644 --- a/tests/PrestashopConsole/Command/Cache/Smarty/ConfigureCommandTest.php +++ b/tests/PrestashopConsole/Command/Cache/Smarty/ConfigureCommandTest.php @@ -1,7 +1,5 @@ - * @copyright 2007-2021 Hennes Hervé + * @copyright since 2016 Hennes Hervé * @license https://opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0) - * https://github.com/nenes25/prestashop_console* + * https://github.com/nenes25/prestashop_console * https://www.h-hennes.fr/blog/ - * */ use PrestashopConsole\Command\Cache\Smarty\ConfigureCommand; diff --git a/tests/PrestashopConsole/Command/Configuration/DeleteCommandTest.php b/tests/PrestashopConsole/Command/Configuration/DeleteCommandTest.php index 98e780a..32f5345 100644 --- a/tests/PrestashopConsole/Command/Configuration/DeleteCommandTest.php +++ b/tests/PrestashopConsole/Command/Configuration/DeleteCommandTest.php @@ -1,7 +1,5 @@ - * @copyright 2007-2021 Hennes Hervé + * @copyright since 2016 Hennes Hervé * @license https://opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0) - * https://github.com/nenes25/prestashop_console* + * https://github.com/nenes25/prestashop_console * https://www.h-hennes.fr/blog/ - * */ - use PrestashopConsole\Command\Configuration\DeleteCommand; use Symfony\Component\Console\Tester\CommandTester; use PHPUnit\Framework\TestCase; diff --git a/tests/PrestashopConsole/Command/Configuration/GetAllCommandTest.php b/tests/PrestashopConsole/Command/Configuration/GetAllCommandTest.php index d5f4d1a..cf54984 100644 --- a/tests/PrestashopConsole/Command/Configuration/GetAllCommandTest.php +++ b/tests/PrestashopConsole/Command/Configuration/GetAllCommandTest.php @@ -1,7 +1,5 @@ - * @copyright 2007-2021 Hennes Hervé + * @copyright since 2016 Hennes Hervé * @license https://opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0) - * https://github.com/nenes25/prestashop_console* + * https://github.com/nenes25/prestashop_console * https://www.h-hennes.fr/blog/ - * */ use PrestashopConsole\Command\Configuration\GetAllCommand; diff --git a/tests/PrestashopConsole/Command/Configuration/GetCommandTest.php b/tests/PrestashopConsole/Command/Configuration/GetCommandTest.php index 3a39e8b..e113e42 100644 --- a/tests/PrestashopConsole/Command/Configuration/GetCommandTest.php +++ b/tests/PrestashopConsole/Command/Configuration/GetCommandTest.php @@ -1,7 +1,5 @@ - * @copyright 2007-2021 Hennes Hervé + * @copyright since 2016 Hennes Hervé * @license https://opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0) - * https://github.com/nenes25/prestashop_console* + * https://github.com/nenes25/prestashop_console * https://www.h-hennes.fr/blog/ - * */ - use PrestashopConsole\Command\Configuration\GetCommand; use Symfony\Component\Console\Tester\CommandTester; use PHPUnit\Framework\TestCase; diff --git a/tests/PrestashopConsole/Command/Configuration/MassCommandTest.php b/tests/PrestashopConsole/Command/Configuration/MassCommandTest.php index 2ae0a39..b88f01c 100644 --- a/tests/PrestashopConsole/Command/Configuration/MassCommandTest.php +++ b/tests/PrestashopConsole/Command/Configuration/MassCommandTest.php @@ -1,7 +1,5 @@ - * @copyright 2007-2021 Hennes Hervé + * @copyright since 2016 Hennes Hervé * @license https://opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0) - * https://github.com/nenes25/prestashop_console* + * https://github.com/nenes25/prestashop_console * https://www.h-hennes.fr/blog/ - * */ use PrestashopConsole\Command\Configuration\MassCommand; diff --git a/tests/PrestashopConsole/Command/Configuration/SetCommandTest.php b/tests/PrestashopConsole/Command/Configuration/SetCommandTest.php index 08f735b..0173fea 100644 --- a/tests/PrestashopConsole/Command/Configuration/SetCommandTest.php +++ b/tests/PrestashopConsole/Command/Configuration/SetCommandTest.php @@ -1,7 +1,5 @@ - * @copyright 2007-2021 Hennes Hervé + * @copyright since 2016 Hennes Hervé * @license https://opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0) - * https://github.com/nenes25/prestashop_console* + * https://github.com/nenes25/prestashop_console * https://www.h-hennes.fr/blog/ - * */ - use PrestashopConsole\Command\Configuration\SetCommand; use Symfony\Component\Console\Tester\CommandTester; use PHPUnit\Framework\TestCase; diff --git a/tests/PrestashopConsole/Command/Customer/ChangePasswordCommandTest.php b/tests/PrestashopConsole/Command/Customer/ChangePasswordCommandTest.php index ffd8bd6..884cdaf 100644 --- a/tests/PrestashopConsole/Command/Customer/ChangePasswordCommandTest.php +++ b/tests/PrestashopConsole/Command/Customer/ChangePasswordCommandTest.php @@ -1,7 +1,5 @@ - * @copyright 2007-2021 Hennes Hervé + * @copyright since 2016 Hennes Hervé * @license https://opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0) - * https://github.com/nenes25/prestashop_console* + * https://github.com/nenes25/prestashop_console * https://www.h-hennes.fr/blog/ - * */ use PrestashopConsole\Command\Customer\ChangePasswordCommand; diff --git a/tests/PrestashopConsole/Command/Customer/CreateCommandTest.php b/tests/PrestashopConsole/Command/Customer/CreateCommandTest.php index 1dece03..607a51d 100644 --- a/tests/PrestashopConsole/Command/Customer/CreateCommandTest.php +++ b/tests/PrestashopConsole/Command/Customer/CreateCommandTest.php @@ -1,7 +1,5 @@ - * @copyright 2007-2021 Hennes Hervé + * @copyright since 2016 Hennes Hervé * @license https://opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0) - * https://github.com/nenes25/prestashop_console* + * https://github.com/nenes25/prestashop_console * https://www.h-hennes.fr/blog/ - * */ - use PrestashopConsole\Command\Customer\CreateCommand; use Symfony\Component\Console\Tester\CommandTester; use Symfony\Component\Console\Helper\HelperSet; diff --git a/tests/PrestashopConsole/Command/Customer/SendCustomerForgotPasswordCommandTest.php b/tests/PrestashopConsole/Command/Customer/SendCustomerForgotPasswordCommandTest.php index ee3f4c4..df715e4 100644 --- a/tests/PrestashopConsole/Command/Customer/SendCustomerForgotPasswordCommandTest.php +++ b/tests/PrestashopConsole/Command/Customer/SendCustomerForgotPasswordCommandTest.php @@ -1,7 +1,5 @@ - * @copyright 2007-2021 Hennes Hervé + * @copyright since 2016 Hennes Hervé * @license https://opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0) - * https://github.com/nenes25/prestashop_console* + * https://github.com/nenes25/prestashop_console * https://www.h-hennes.fr/blog/ - * */ use PrestashopConsole\Command\Customer\SendCustomerForgotPasswordCommand; diff --git a/tests/PrestashopConsole/Command/Dev/AddIndexFilesCommandTest.php b/tests/PrestashopConsole/Command/Dev/AddIndexFilesCommandTest.php index 68cc405..f445f63 100644 --- a/tests/PrestashopConsole/Command/Dev/AddIndexFilesCommandTest.php +++ b/tests/PrestashopConsole/Command/Dev/AddIndexFilesCommandTest.php @@ -1,7 +1,5 @@ - * @copyright 2007-2022 Hennes Hervé + * @copyright since 2016 Hennes Hervé * @license https://opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0) - * http://www.h-hennes.fr/blog/ + * https://github.com/nenes25/prestashop_console + * https://www.h-hennes.fr/blog/ */ use \PrestashopConsole\Command\Dev\AddIndexFilesCommand; diff --git a/tests/PrestashopConsole/Command/Dev/ChangeShopDomainCommandTest.php b/tests/PrestashopConsole/Command/Dev/ChangeShopDomainCommandTest.php index 5f32982..78aaaa2 100644 --- a/tests/PrestashopConsole/Command/Dev/ChangeShopDomainCommandTest.php +++ b/tests/PrestashopConsole/Command/Dev/ChangeShopDomainCommandTest.php @@ -13,7 +13,6 @@ * @author Hennes Hervé * @copyright since 2016 Hennes Hervé * @license https://opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0) - * * https://github.com/nenes25/prestashop_console * https://www.h-hennes.fr/blog/ */ diff --git a/tests/PrestashopConsole/Command/Dev/ListOverridesCommandTest.php b/tests/PrestashopConsole/Command/Dev/ListOverridesCommandTest.php index 183e2b1..aaf9149 100644 --- a/tests/PrestashopConsole/Command/Dev/ListOverridesCommandTest.php +++ b/tests/PrestashopConsole/Command/Dev/ListOverridesCommandTest.php @@ -1,7 +1,5 @@ - * @copyright 2007-2021 Hennes Hervé + * @copyright since 2016 Hennes Hervé * @license https://opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0) - * https://github.com/nenes25/prestashop_console* + * https://github.com/nenes25/prestashop_console * https://www.h-hennes.fr/blog/ - * */ use PrestashopConsole\Command\Dev\ListOverridesCommand; diff --git a/tests/PrestashopConsole/Command/Hook/ListCommandTest.php b/tests/PrestashopConsole/Command/Hook/ListCommandTest.php index 073ad4f..4123ca0 100644 --- a/tests/PrestashopConsole/Command/Hook/ListCommandTest.php +++ b/tests/PrestashopConsole/Command/Hook/ListCommandTest.php @@ -1,7 +1,5 @@ - * @copyright 2007-2021 Hennes Hervé + * @copyright since 2016 Hennes Hervé * @license https://opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0) - * https://github.com/nenes25/prestashop_console* + * https://github.com/nenes25/prestashop_console * https://www.h-hennes.fr/blog/ - * */ use PrestashopConsole\Command\Hook\ListCommand; diff --git a/tests/PrestashopConsole/Command/Hook/ModuleCommandTest.php b/tests/PrestashopConsole/Command/Hook/ModuleCommandTest.php index 63e5e22..aad4c74 100644 --- a/tests/PrestashopConsole/Command/Hook/ModuleCommandTest.php +++ b/tests/PrestashopConsole/Command/Hook/ModuleCommandTest.php @@ -1,7 +1,5 @@ - * @copyright 2007-2021 Hennes Hervé + * @copyright since 2016 Hennes Hervé * @license https://opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0) - * https://github.com/nenes25/prestashop_console* + * https://github.com/nenes25/prestashop_console * https://www.h-hennes.fr/blog/ - * */ use PrestashopConsole\Command\Hook\ModuleCommand; diff --git a/tests/PrestashopConsole/Command/Install/InfoCommandTest.php b/tests/PrestashopConsole/Command/Install/InfoCommandTest.php index 2cccc02..a6532da 100644 --- a/tests/PrestashopConsole/Command/Install/InfoCommandTest.php +++ b/tests/PrestashopConsole/Command/Install/InfoCommandTest.php @@ -1,7 +1,5 @@ - * @copyright 2007-2021 Hennes Hervé + * @copyright since 2016 Hennes Hervé * @license https://opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0) - * https://github.com/nenes25/prestashop_console* + * https://github.com/nenes25/prestashop_console * https://www.h-hennes.fr/blog/ - * */ use PrestashopConsole\Command\Install\InfoCommand; diff --git a/tests/PrestashopConsole/Command/Module/DisableCommandTest.php b/tests/PrestashopConsole/Command/Module/DisableCommandTest.php index 08f55cb..b1b831f 100644 --- a/tests/PrestashopConsole/Command/Module/DisableCommandTest.php +++ b/tests/PrestashopConsole/Command/Module/DisableCommandTest.php @@ -1,7 +1,5 @@ - * @copyright 2007-2021 Hennes Hervé + * @copyright since 2016 Hennes Hervé * @license https://opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0) - * https://github.com/nenes25/prestashop_console* + * https://github.com/nenes25/prestashop_console * https://www.h-hennes.fr/blog/ - * */ use PrestashopConsole\Command\Module\DisableCommand; diff --git a/tests/PrestashopConsole/Command/Module/EnableCommandTest.php b/tests/PrestashopConsole/Command/Module/EnableCommandTest.php index a188d11..f1b3653 100644 --- a/tests/PrestashopConsole/Command/Module/EnableCommandTest.php +++ b/tests/PrestashopConsole/Command/Module/EnableCommandTest.php @@ -1,7 +1,5 @@ - * @copyright 2007-2021 Hennes Hervé + * @copyright since 2016 Hennes Hervé * @license https://opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0) - * https://github.com/nenes25/prestashop_console* + * https://github.com/nenes25/prestashop_console * https://www.h-hennes.fr/blog/ - * */ use PrestashopConsole\Command\Module\EnableCommand; diff --git a/tests/PrestashopConsole/Command/Module/Hook/AddModuleHooksCommandTest.php b/tests/PrestashopConsole/Command/Module/Hook/AddModuleHooksCommandTest.php index 7ee4168..1a71ced 100644 --- a/tests/PrestashopConsole/Command/Module/Hook/AddModuleHooksCommandTest.php +++ b/tests/PrestashopConsole/Command/Module/Hook/AddModuleHooksCommandTest.php @@ -1,7 +1,5 @@ - * @copyright 2007-2021 Hennes Hervé + * @copyright since 2016 Hennes Hervé * @license https://opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0) - * https://github.com/nenes25/prestashop_console* + * https://github.com/nenes25/prestashop_console * https://www.h-hennes.fr/blog/ - * */ use PrestashopConsole\Command\Module\Hook\AddModuleHooksCommand; diff --git a/tests/PrestashopConsole/Command/Module/Hook/ListModuleHooksCommandTest.php b/tests/PrestashopConsole/Command/Module/Hook/ListModuleHooksCommandTest.php index e1d5ca2..c1dfce5 100644 --- a/tests/PrestashopConsole/Command/Module/Hook/ListModuleHooksCommandTest.php +++ b/tests/PrestashopConsole/Command/Module/Hook/ListModuleHooksCommandTest.php @@ -1,7 +1,5 @@ - * @copyright 2007-2021 Hennes Hervé + * @copyright since 2016 Hennes Hervé * @license https://opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0) - * https://github.com/nenes25/prestashop_console* + * https://github.com/nenes25/prestashop_console * https://www.h-hennes.fr/blog/ - * */ use PrestashopConsole\Command\Module\Hook\ListModuleHooksCommand; diff --git a/tests/PrestashopConsole/Command/Module/Hook/RemoveModuleHooksCommandTest.php b/tests/PrestashopConsole/Command/Module/Hook/RemoveModuleHooksCommandTest.php index 024e5c1..86add4e 100644 --- a/tests/PrestashopConsole/Command/Module/Hook/RemoveModuleHooksCommandTest.php +++ b/tests/PrestashopConsole/Command/Module/Hook/RemoveModuleHooksCommandTest.php @@ -1,7 +1,5 @@ - * @copyright 2007-2021 Hennes Hervé + * @copyright since 2016 Hennes Hervé * @license https://opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0) - * https://github.com/nenes25/prestashop_console* + * https://github.com/nenes25/prestashop_console * https://www.h-hennes.fr/blog/ - * */ use PrestashopConsole\Command\Module\Hook\RemoveModuleHooksCommand; diff --git a/tests/PrestashopConsole/Command/Module/InstallCommandTest.php b/tests/PrestashopConsole/Command/Module/InstallCommandTest.php index 08e5da6..e2ae15a 100644 --- a/tests/PrestashopConsole/Command/Module/InstallCommandTest.php +++ b/tests/PrestashopConsole/Command/Module/InstallCommandTest.php @@ -1,7 +1,5 @@ - * @copyright 2007-2021 Hennes Hervé + * @copyright since 2016 Hennes Hervé * @license https://opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0) - * https://github.com/nenes25/prestashop_console* + * https://github.com/nenes25/prestashop_console * https://www.h-hennes.fr/blog/ - * */ use PrestashopConsole\Command\Module\InstallCommand; diff --git a/tests/PrestashopConsole/Command/Module/ListCommandTest.php b/tests/PrestashopConsole/Command/Module/ListCommandTest.php index 5b05681..03b13d7 100644 --- a/tests/PrestashopConsole/Command/Module/ListCommandTest.php +++ b/tests/PrestashopConsole/Command/Module/ListCommandTest.php @@ -1,7 +1,5 @@ - * @copyright 2007-2021 Hennes Hervé + * @copyright since 2016 Hennes Hervé * @license https://opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0) - * https://github.com/nenes25/prestashop_console* + * https://github.com/nenes25/prestashop_console * https://www.h-hennes.fr/blog/ - * */ use PrestashopConsole\Command\Module\ListCommand; diff --git a/tests/PrestashopConsole/Command/Module/ResetCommandTest.php b/tests/PrestashopConsole/Command/Module/ResetCommandTest.php index eb24da2..8b730d0 100644 --- a/tests/PrestashopConsole/Command/Module/ResetCommandTest.php +++ b/tests/PrestashopConsole/Command/Module/ResetCommandTest.php @@ -1,7 +1,5 @@ - * @copyright 2007-2021 Hennes Hervé + * @copyright since 2016 Hennes Hervé * @license https://opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0) - * https://github.com/nenes25/prestashop_console* + * https://github.com/nenes25/prestashop_console * https://www.h-hennes.fr/blog/ - * */ use PrestashopConsole\Command\Module\ResetCommand; diff --git a/tests/PrestashopConsole/Command/Module/Tab/AddCommandTest.php b/tests/PrestashopConsole/Command/Module/Tab/AddCommandTest.php index c6dcb43..68c1190 100644 --- a/tests/PrestashopConsole/Command/Module/Tab/AddCommandTest.php +++ b/tests/PrestashopConsole/Command/Module/Tab/AddCommandTest.php @@ -1,7 +1,5 @@ - * @copyright 2007-2021 Hennes Hervé + * @copyright since 2016 Hennes Hervé * @license https://opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0) - * https://github.com/nenes25/prestashop_console* + * https://github.com/nenes25/prestashop_console * https://www.h-hennes.fr/blog/ - * */ use PrestashopConsole\Command\Module\Tab\AddCommand; diff --git a/tests/PrestashopConsole/Command/Module/Tab/ListCommandTest.php b/tests/PrestashopConsole/Command/Module/Tab/ListCommandTest.php index 283b5a1..23e1d07 100644 --- a/tests/PrestashopConsole/Command/Module/Tab/ListCommandTest.php +++ b/tests/PrestashopConsole/Command/Module/Tab/ListCommandTest.php @@ -1,7 +1,5 @@ - * @copyright 2007-2021 Hennes Hervé + * @copyright since 2016 Hennes Hervé * @license https://opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0) - * https://github.com/nenes25/prestashop_console* + * https://github.com/nenes25/prestashop_console * https://www.h-hennes.fr/blog/ - * */ use PrestashopConsole\Command\Module\Tab\ListCommand; diff --git a/tests/PrestashopConsole/Command/Module/Tab/RemoveCommandTest.php b/tests/PrestashopConsole/Command/Module/Tab/RemoveCommandTest.php index 0eb96a2..ecb3b0d 100644 --- a/tests/PrestashopConsole/Command/Module/Tab/RemoveCommandTest.php +++ b/tests/PrestashopConsole/Command/Module/Tab/RemoveCommandTest.php @@ -1,7 +1,5 @@ - * @copyright 2007-2021 Hennes Hervé + * @copyright since 2016 Hennes Hervé * @license https://opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0) - * https://github.com/nenes25/prestashop_console* + * https://github.com/nenes25/prestashop_console * https://www.h-hennes.fr/blog/ - * */ use PrestashopConsole\Command\Module\Tab\RemoveCommand; diff --git a/tests/PrestashopConsole/Command/Module/UninstallCommandTest.php b/tests/PrestashopConsole/Command/Module/UninstallCommandTest.php index 56f7299..012ee93 100644 --- a/tests/PrestashopConsole/Command/Module/UninstallCommandTest.php +++ b/tests/PrestashopConsole/Command/Module/UninstallCommandTest.php @@ -1,7 +1,5 @@ - * @copyright 2007-2021 Hennes Hervé + * @copyright since 2016 Hennes Hervé * @license https://opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0) - * https://github.com/nenes25/prestashop_console* + * https://github.com/nenes25/prestashop_console * https://www.h-hennes.fr/blog/ - * */ use PrestashopConsole\Command\Module\UninstallCommand; diff --git a/tests/PrestashopConsole/Command/Parameters/Generate/HtaccessCommandTest.php b/tests/PrestashopConsole/Command/Parameters/Generate/HtaccessCommandTest.php index d84b40f..2122d76 100644 --- a/tests/PrestashopConsole/Command/Parameters/Generate/HtaccessCommandTest.php +++ b/tests/PrestashopConsole/Command/Parameters/Generate/HtaccessCommandTest.php @@ -1,7 +1,5 @@ - * @copyright 2007-2021 Hennes Hervé + * @copyright since 2016 Hennes Hervé * @license https://opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0) - * https://github.com/nenes25/prestashop_console* + * https://github.com/nenes25/prestashop_console * https://www.h-hennes.fr/blog/ - * */ - - use PrestashopConsole\Command\Parameters\Generate\HtaccessCommand; use Symfony\Component\Console\Tester\CommandTester; use PHPUnit\Framework\TestCase; diff --git a/tests/PrestashopConsole/Command/Parameters/Generate/RobotsTxtCommandTest.php b/tests/PrestashopConsole/Command/Parameters/Generate/RobotsTxtCommandTest.php index 0b2d7c6..5c1fba4 100644 --- a/tests/PrestashopConsole/Command/Parameters/Generate/RobotsTxtCommandTest.php +++ b/tests/PrestashopConsole/Command/Parameters/Generate/RobotsTxtCommandTest.php @@ -1,7 +1,5 @@ - * @copyright 2007-2021 Hennes Hervé + * @copyright since 2016 Hennes Hervé * @license https://opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0) - * https://github.com/nenes25/prestashop_console* + * https://github.com/nenes25/prestashop_console * https://www.h-hennes.fr/blog/ - * */ - use PrestashopConsole\Command\Parameters\Generate\RobotsTxtCommand; use Symfony\Component\Console\Tester\CommandTester; use PHPUnit\Framework\TestCase; diff --git a/tests/PrestashopConsole/Command/Preferences/MaintenanceCommandTest.php b/tests/PrestashopConsole/Command/Preferences/MaintenanceCommandTest.php index 64df7b7..ad21481 100644 --- a/tests/PrestashopConsole/Command/Preferences/MaintenanceCommandTest.php +++ b/tests/PrestashopConsole/Command/Preferences/MaintenanceCommandTest.php @@ -1,7 +1,5 @@ - * @copyright 2007-2021 Hennes Hervé + * @copyright since 2016 Hennes Hervé * @license https://opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0) - * https://github.com/nenes25/prestashop_console* + * https://github.com/nenes25/prestashop_console * https://www.h-hennes.fr/blog/ - * */ use PrestashopConsole\Command\Preferences\MaintenanceCommand; diff --git a/tests/PrestashopConsole/Command/Preferences/OverrideCommandTest.php b/tests/PrestashopConsole/Command/Preferences/OverrideCommandTest.php index 21b0fbd..f4503d3 100644 --- a/tests/PrestashopConsole/Command/Preferences/OverrideCommandTest.php +++ b/tests/PrestashopConsole/Command/Preferences/OverrideCommandTest.php @@ -1,7 +1,5 @@ - * @copyright 2007-2021 Hennes Hervé + * @copyright since 2016 Hennes Hervé * @license https://opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0) - * https://github.com/nenes25/prestashop_console* + * https://github.com/nenes25/prestashop_console * https://www.h-hennes.fr/blog/ - * */ use PrestashopConsole\Command\Preferences\OverrideCommand; diff --git a/tests/PrestashopConsole/Command/Preferences/Search/IndexCommandTest.php b/tests/PrestashopConsole/Command/Preferences/Search/IndexCommandTest.php index e48b302..4feb37c 100644 --- a/tests/PrestashopConsole/Command/Preferences/Search/IndexCommandTest.php +++ b/tests/PrestashopConsole/Command/Preferences/Search/IndexCommandTest.php @@ -1,7 +1,5 @@ - * @copyright 2007-2021 Hennes Hervé + * @copyright since 2016 Hennes Hervé * @license https://opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0) - * https://github.com/nenes25/prestashop_console* + * https://github.com/nenes25/prestashop_console * https://www.h-hennes.fr/blog/ - * */ use PrestashopConsole\Command\Preferences\Search\IndexCommand; diff --git a/tests/PrestashopConsole/Command/Preferences/UrlRewriteCommandTest.php b/tests/PrestashopConsole/Command/Preferences/UrlRewriteCommandTest.php index 3e253c4..a1bcfd5 100644 --- a/tests/PrestashopConsole/Command/Preferences/UrlRewriteCommandTest.php +++ b/tests/PrestashopConsole/Command/Preferences/UrlRewriteCommandTest.php @@ -1,7 +1,5 @@ - * @copyright 2007-2021 Hennes Hervé + * @copyright since 2016 Hennes Hervé * @license https://opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0) - * https://github.com/nenes25/prestashop_console* + * https://github.com/nenes25/prestashop_console * https://www.h-hennes.fr/blog/ - * */ use PrestashopConsole\Command\Preferences\UrlRewriteCommand; diff --git a/tests/PrestashopConsole/Command/Webservice/CreateKeyCommandTest.php b/tests/PrestashopConsole/Command/Webservice/CreateKeyCommandTest.php index c8face1..37ccfea 100644 --- a/tests/PrestashopConsole/Command/Webservice/CreateKeyCommandTest.php +++ b/tests/PrestashopConsole/Command/Webservice/CreateKeyCommandTest.php @@ -1,7 +1,5 @@ - * @copyright 2007-2021 Hennes Hervé + * @copyright since 2016 Hennes Hervé * @license https://opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0) - * https://github.com/nenes25/prestashop_console* + * https://github.com/nenes25/prestashop_console * https://www.h-hennes.fr/blog/ - * */ - use PrestashopConsole\Command\Webservice\CreateKeyCommand; use Symfony\Component\Console\Tester\CommandTester; use PHPUnit\Framework\TestCase; diff --git a/tests/PrestashopConsole/Command/Webservice/DeleteKeyCommandTest.php b/tests/PrestashopConsole/Command/Webservice/DeleteKeyCommandTest.php index 86d25f8..735b278 100644 --- a/tests/PrestashopConsole/Command/Webservice/DeleteKeyCommandTest.php +++ b/tests/PrestashopConsole/Command/Webservice/DeleteKeyCommandTest.php @@ -1,7 +1,5 @@ - * @copyright 2007-2021 Hennes Hervé + * @copyright since 2016 Hennes Hervé * @license https://opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0) - * https://github.com/nenes25/prestashop_console* + * https://github.com/nenes25/prestashop_console * https://www.h-hennes.fr/blog/ - * */ - use PrestashopConsole\Command\Webservice\DeleteKeyCommand; use Symfony\Component\Console\Tester\CommandTester; use PHPUnit\Framework\TestCase;