diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 244d1a3e..83f45ee4 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -36,6 +36,9 @@ jobs: wkhtmltopdf: false exclude: + - php: "8.0" + symfony: "^6.0" + - symfony: "^6.0" sylius: "~1.11.10" diff --git a/CONFLICTS.md b/CONFLICTS.md new file mode 100644 index 00000000..6bc693ec --- /dev/null +++ b/CONFLICTS.md @@ -0,0 +1,10 @@ +# CONFLICTS + +This document explains why certain conflicts were added to `composer.json` and +references related issues. + +- `behat/mink-selenium2-driver:>=1.7.0`: + + This version adds strict type to the `Behat\Mink\Driver\Selenium2Driver::visit($url)` method + which causes a fatal error because the method signature is no longer compatible with the parent class: + `PHP Fatal error: Declaration of Behat\Mink\Driver\Selenium2Driver::visit(string $url) must be compatible with Behat\Mink\Driver\CoreDriver::visit($url)` diff --git a/LICENCE b/LICENCE new file mode 100644 index 00000000..12437d65 --- /dev/null +++ b/LICENCE @@ -0,0 +1,19 @@ +Copyright (c) 2018-present Sylius Sp. z o.o. + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is furnished +to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. diff --git a/composer.json b/composer.json index 9913d500..0788d176 100644 --- a/composer.json +++ b/composer.json @@ -73,6 +73,9 @@ "vendor/bin/ecs check --fix src/ spec/" ] }, + "conflict": { + "behat/mink-selenium2-driver": ">=1.7.0" + }, "config": { "sort-packages": true, "allow-plugins": { diff --git a/ecs.php b/ecs.php index 1de94827..98f00902 100644 --- a/ecs.php +++ b/ecs.php @@ -14,7 +14,7 @@ 'header' => 'This file is part of the Sylius package. -(c) Paweł Jędrzejewski +(c) Sylius Sp. z o.o. For the full copyright and license information, please view the LICENSE file that was distributed with this source code.', diff --git a/spec/Command/SendInvoiceEmailSpec.php b/spec/Command/SendInvoiceEmailSpec.php index 9e976e9a..c7f696d7 100644 --- a/spec/Command/SendInvoiceEmailSpec.php +++ b/spec/Command/SendInvoiceEmailSpec.php @@ -3,7 +3,7 @@ /* * This file is part of the Sylius package. * - * (c) Paweł Jędrzejewski + * (c) Sylius Sp. z o.o. * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/spec/CommandHandler/SendInvoiceEmailHandlerSpec.php b/spec/CommandHandler/SendInvoiceEmailHandlerSpec.php index acfba4e9..1fbbe73c 100644 --- a/spec/CommandHandler/SendInvoiceEmailHandlerSpec.php +++ b/spec/CommandHandler/SendInvoiceEmailHandlerSpec.php @@ -3,7 +3,7 @@ /* * This file is part of the Sylius package. * - * (c) Paweł Jędrzejewski + * (c) Sylius Sp. z o.o. * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/spec/Converter/OrderItemUnitsToLineItemsConverterSpec.php b/spec/Converter/OrderItemUnitsToLineItemsConverterSpec.php index b5347e26..ec923987 100644 --- a/spec/Converter/OrderItemUnitsToLineItemsConverterSpec.php +++ b/spec/Converter/OrderItemUnitsToLineItemsConverterSpec.php @@ -3,7 +3,7 @@ /* * This file is part of the Sylius package. * - * (c) Paweł Jędrzejewski + * (c) Sylius Sp. z o.o. * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/spec/Converter/ShippingAdjustmentsToLineItemsConverterSpec.php b/spec/Converter/ShippingAdjustmentsToLineItemsConverterSpec.php index c9bbf931..e1a7aa4c 100644 --- a/spec/Converter/ShippingAdjustmentsToLineItemsConverterSpec.php +++ b/spec/Converter/ShippingAdjustmentsToLineItemsConverterSpec.php @@ -3,7 +3,7 @@ /* * This file is part of the Sylius package. * - * (c) Paweł Jędrzejewski + * (c) Sylius Sp. z o.o. * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/spec/Converter/TaxItemsConverterSpec.php b/spec/Converter/TaxItemsConverterSpec.php index 18a22359..a206d6f1 100644 --- a/spec/Converter/TaxItemsConverterSpec.php +++ b/spec/Converter/TaxItemsConverterSpec.php @@ -3,7 +3,7 @@ /* * This file is part of the Sylius package. * - * (c) Paweł Jędrzejewski + * (c) Sylius Sp. z o.o. * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/spec/Creator/InvoiceCreatorSpec.php b/spec/Creator/InvoiceCreatorSpec.php index cbfbd860..6d895965 100644 --- a/spec/Creator/InvoiceCreatorSpec.php +++ b/spec/Creator/InvoiceCreatorSpec.php @@ -3,7 +3,7 @@ /* * This file is part of the Sylius package. * - * (c) Paweł Jędrzejewski + * (c) Sylius Sp. z o.o. * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/spec/Creator/MassInvoicesCreatorSpec.php b/spec/Creator/MassInvoicesCreatorSpec.php index 7f361d2b..5ebe0f6d 100644 --- a/spec/Creator/MassInvoicesCreatorSpec.php +++ b/spec/Creator/MassInvoicesCreatorSpec.php @@ -3,7 +3,7 @@ /* * This file is part of the Sylius package. * - * (c) Paweł Jędrzejewski + * (c) Sylius Sp. z o.o. * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/spec/Email/InvoiceEmailSenderSpec.php b/spec/Email/InvoiceEmailSenderSpec.php index e4426599..2176069c 100644 --- a/spec/Email/InvoiceEmailSenderSpec.php +++ b/spec/Email/InvoiceEmailSenderSpec.php @@ -3,7 +3,7 @@ /* * This file is part of the Sylius package. * - * (c) Paweł Jędrzejewski + * (c) Sylius Sp. z o.o. * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/spec/Entity/BillingDataSpec.php b/spec/Entity/BillingDataSpec.php index b0f22002..14727e62 100644 --- a/spec/Entity/BillingDataSpec.php +++ b/spec/Entity/BillingDataSpec.php @@ -3,7 +3,7 @@ /* * This file is part of the Sylius package. * - * (c) Paweł Jędrzejewski + * (c) Sylius Sp. z o.o. * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/spec/Entity/InvoiceSpec.php b/spec/Entity/InvoiceSpec.php index 8b5e067e..c64a6759 100644 --- a/spec/Entity/InvoiceSpec.php +++ b/spec/Entity/InvoiceSpec.php @@ -3,7 +3,7 @@ /* * This file is part of the Sylius package. * - * (c) Paweł Jędrzejewski + * (c) Sylius Sp. z o.o. * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/spec/Entity/LineItemSpec.php b/spec/Entity/LineItemSpec.php index 242647a7..16cba2a3 100644 --- a/spec/Entity/LineItemSpec.php +++ b/spec/Entity/LineItemSpec.php @@ -3,7 +3,7 @@ /* * This file is part of the Sylius package. * - * (c) Paweł Jędrzejewski + * (c) Sylius Sp. z o.o. * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/spec/Entity/TaxItemSpec.php b/spec/Entity/TaxItemSpec.php index 1de8adf9..59bcf2e3 100644 --- a/spec/Entity/TaxItemSpec.php +++ b/spec/Entity/TaxItemSpec.php @@ -3,7 +3,7 @@ /* * This file is part of the Sylius package. * - * (c) Paweł Jędrzejewski + * (c) Sylius Sp. z o.o. * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/spec/Event/OrderPaymentPaidSpec.php b/spec/Event/OrderPaymentPaidSpec.php index 5d649d43..cef12be3 100644 --- a/spec/Event/OrderPaymentPaidSpec.php +++ b/spec/Event/OrderPaymentPaidSpec.php @@ -3,7 +3,7 @@ /* * This file is part of the Sylius package. * - * (c) Paweł Jędrzejewski + * (c) Sylius Sp. z o.o. * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/spec/Event/OrderPlacedSpec.php b/spec/Event/OrderPlacedSpec.php index 7f5d4d5e..5d80d4ce 100644 --- a/spec/Event/OrderPlacedSpec.php +++ b/spec/Event/OrderPlacedSpec.php @@ -3,7 +3,7 @@ /* * This file is part of the Sylius package. * - * (c) Paweł Jędrzejewski + * (c) Sylius Sp. z o.o. * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/spec/EventListener/CreateInvoiceOnOrderPlacedListenerSpec.php b/spec/EventListener/CreateInvoiceOnOrderPlacedListenerSpec.php index 8ced625a..b5ff37e7 100644 --- a/spec/EventListener/CreateInvoiceOnOrderPlacedListenerSpec.php +++ b/spec/EventListener/CreateInvoiceOnOrderPlacedListenerSpec.php @@ -3,7 +3,7 @@ /* * This file is part of the Sylius package. * - * (c) Paweł Jędrzejewski + * (c) Sylius Sp. z o.o. * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/spec/EventListener/OrderPaymentPaidListenerSpec.php b/spec/EventListener/OrderPaymentPaidListenerSpec.php index c14cade4..20e383fa 100644 --- a/spec/EventListener/OrderPaymentPaidListenerSpec.php +++ b/spec/EventListener/OrderPaymentPaidListenerSpec.php @@ -3,7 +3,7 @@ /* * This file is part of the Sylius package. * - * (c) Paweł Jędrzejewski + * (c) Sylius Sp. z o.o. * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/spec/EventProducer/OrderPaymentPaidProducerSpec.php b/spec/EventProducer/OrderPaymentPaidProducerSpec.php index b2790211..dc5d4155 100644 --- a/spec/EventProducer/OrderPaymentPaidProducerSpec.php +++ b/spec/EventProducer/OrderPaymentPaidProducerSpec.php @@ -3,7 +3,7 @@ /* * This file is part of the Sylius package. * - * (c) Paweł Jędrzejewski + * (c) Sylius Sp. z o.o. * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/spec/EventProducer/OrderPlacedProducerSpec.php b/spec/EventProducer/OrderPlacedProducerSpec.php index e6cdb41a..0b5ba5e4 100644 --- a/spec/EventProducer/OrderPlacedProducerSpec.php +++ b/spec/EventProducer/OrderPlacedProducerSpec.php @@ -3,7 +3,7 @@ /* * This file is part of the Sylius package. * - * (c) Paweł Jędrzejewski + * (c) Sylius Sp. z o.o. * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/spec/Factory/BillingDataFactorySpec.php b/spec/Factory/BillingDataFactorySpec.php index 2fe783f2..ad4ffaa6 100644 --- a/spec/Factory/BillingDataFactorySpec.php +++ b/spec/Factory/BillingDataFactorySpec.php @@ -3,7 +3,7 @@ /* * This file is part of the Sylius package. * - * (c) Paweł Jędrzejewski + * (c) Sylius Sp. z o.o. * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/spec/Factory/InvoiceFactorySpec.php b/spec/Factory/InvoiceFactorySpec.php index c62eaf33..97fff41c 100644 --- a/spec/Factory/InvoiceFactorySpec.php +++ b/spec/Factory/InvoiceFactorySpec.php @@ -3,7 +3,7 @@ /* * This file is part of the Sylius package. * - * (c) Paweł Jędrzejewski + * (c) Sylius Sp. z o.o. * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/spec/Factory/InvoiceShopBillingDataFactorySpec.php b/spec/Factory/InvoiceShopBillingDataFactorySpec.php index 38d2b6d4..c169d34b 100644 --- a/spec/Factory/InvoiceShopBillingDataFactorySpec.php +++ b/spec/Factory/InvoiceShopBillingDataFactorySpec.php @@ -3,7 +3,7 @@ /* * This file is part of the Sylius package. * - * (c) Paweł Jędrzejewski + * (c) Sylius Sp. z o.o. * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/spec/Factory/LineItemFactorySpec.php b/spec/Factory/LineItemFactorySpec.php index 1b5bc3ad..fbc0038e 100644 --- a/spec/Factory/LineItemFactorySpec.php +++ b/spec/Factory/LineItemFactorySpec.php @@ -3,7 +3,7 @@ /* * This file is part of the Sylius package. * - * (c) Paweł Jędrzejewski + * (c) Sylius Sp. z o.o. * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/spec/Factory/TaxItemFactorySpec.php b/spec/Factory/TaxItemFactorySpec.php index 3819cf24..83fb9b72 100644 --- a/spec/Factory/TaxItemFactorySpec.php +++ b/spec/Factory/TaxItemFactorySpec.php @@ -3,7 +3,7 @@ /* * This file is part of the Sylius package. * - * (c) Paweł Jędrzejewski + * (c) Sylius Sp. z o.o. * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/spec/Fixture/Listener/InvoicesPurgerListenerSpec.php b/spec/Fixture/Listener/InvoicesPurgerListenerSpec.php index 6a3a730e..1d2aa72c 100644 --- a/spec/Fixture/Listener/InvoicesPurgerListenerSpec.php +++ b/spec/Fixture/Listener/InvoicesPurgerListenerSpec.php @@ -3,7 +3,7 @@ /* * This file is part of the Sylius package. * - * (c) Paweł Jędrzejewski + * (c) Sylius Sp. z o.o. * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/spec/Generator/InvoiceFileNameGeneratorSpec.php b/spec/Generator/InvoiceFileNameGeneratorSpec.php index d1fcc8bb..e50aa6cb 100644 --- a/spec/Generator/InvoiceFileNameGeneratorSpec.php +++ b/spec/Generator/InvoiceFileNameGeneratorSpec.php @@ -3,7 +3,7 @@ /* * This file is part of the Sylius package. * - * (c) Paweł Jędrzejewski + * (c) Sylius Sp. z o.o. * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/spec/Generator/InvoiceGeneratorSpec.php b/spec/Generator/InvoiceGeneratorSpec.php index 32e4acba..ddc6a650 100644 --- a/spec/Generator/InvoiceGeneratorSpec.php +++ b/spec/Generator/InvoiceGeneratorSpec.php @@ -3,7 +3,7 @@ /* * This file is part of the Sylius package. * - * (c) Paweł Jędrzejewski + * (c) Sylius Sp. z o.o. * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/spec/Generator/InvoicePdfFileGeneratorSpec.php b/spec/Generator/InvoicePdfFileGeneratorSpec.php index d66d36f8..45c40a29 100644 --- a/spec/Generator/InvoicePdfFileGeneratorSpec.php +++ b/spec/Generator/InvoicePdfFileGeneratorSpec.php @@ -3,7 +3,7 @@ /* * This file is part of the Sylius package. * - * (c) Paweł Jędrzejewski + * (c) Sylius Sp. z o.o. * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/spec/Generator/PdfOptionsGeneratorSpec.php b/spec/Generator/PdfOptionsGeneratorSpec.php index 27cec88d..8e79894a 100644 --- a/spec/Generator/PdfOptionsGeneratorSpec.php +++ b/spec/Generator/PdfOptionsGeneratorSpec.php @@ -3,7 +3,7 @@ /* * This file is part of the Sylius package. * - * (c) Paweł Jędrzejewski + * (c) Sylius Sp. z o.o. * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/spec/Generator/SequentialInvoiceNumberGeneratorSpec.php b/spec/Generator/SequentialInvoiceNumberGeneratorSpec.php index a76ed446..49ddaea0 100644 --- a/spec/Generator/SequentialInvoiceNumberGeneratorSpec.php +++ b/spec/Generator/SequentialInvoiceNumberGeneratorSpec.php @@ -3,7 +3,7 @@ /* * This file is part of the Sylius package. * - * (c) Paweł Jędrzejewski + * (c) Sylius Sp. z o.o. * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/spec/Generator/TwigToPdfGeneratorSpec.php b/spec/Generator/TwigToPdfGeneratorSpec.php index eee3717a..ef575c34 100644 --- a/spec/Generator/TwigToPdfGeneratorSpec.php +++ b/spec/Generator/TwigToPdfGeneratorSpec.php @@ -3,7 +3,7 @@ /* * This file is part of the Sylius package. * - * (c) Paweł Jędrzejewski + * (c) Sylius Sp. z o.o. * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/spec/Generator/UuidInvoiceIdentifierGeneratorSpec.php b/spec/Generator/UuidInvoiceIdentifierGeneratorSpec.php index ed2c0356..678d9371 100644 --- a/spec/Generator/UuidInvoiceIdentifierGeneratorSpec.php +++ b/spec/Generator/UuidInvoiceIdentifierGeneratorSpec.php @@ -3,7 +3,7 @@ /* * This file is part of the Sylius package. * - * (c) Paweł Jędrzejewski + * (c) Sylius Sp. z o.o. * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/spec/Manager/InvoiceFileManagerSpec.php b/spec/Manager/InvoiceFileManagerSpec.php index 2d0ed009..9d1e07a1 100644 --- a/spec/Manager/InvoiceFileManagerSpec.php +++ b/spec/Manager/InvoiceFileManagerSpec.php @@ -3,7 +3,7 @@ /* * This file is part of the Sylius package. * - * (c) Paweł Jędrzejewski + * (c) Sylius Sp. z o.o. * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/spec/Model/InvoicePdfSpec.php b/spec/Model/InvoicePdfSpec.php index 5a873b2d..6673d829 100644 --- a/spec/Model/InvoicePdfSpec.php +++ b/spec/Model/InvoicePdfSpec.php @@ -3,7 +3,7 @@ /* * This file is part of the Sylius package. * - * (c) Paweł Jędrzejewski + * (c) Sylius Sp. z o.o. * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/spec/Provider/ChannelColorProviderSpec.php b/spec/Provider/ChannelColorProviderSpec.php index 73c29fca..b060498e 100644 --- a/spec/Provider/ChannelColorProviderSpec.php +++ b/spec/Provider/ChannelColorProviderSpec.php @@ -3,7 +3,7 @@ /* * This file is part of the Sylius package. * - * (c) Paweł Jędrzejewski + * (c) Sylius Sp. z o.o. * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/spec/Provider/InvoiceFileProviderSpec.php b/spec/Provider/InvoiceFileProviderSpec.php index 010590a1..b5b87ec4 100644 --- a/spec/Provider/InvoiceFileProviderSpec.php +++ b/spec/Provider/InvoiceFileProviderSpec.php @@ -3,7 +3,7 @@ /* * This file is part of the Sylius package. * - * (c) Paweł Jędrzejewski + * (c) Sylius Sp. z o.o. * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/spec/Provider/TaxRatePercentageProviderSpec.php b/spec/Provider/TaxRatePercentageProviderSpec.php index 919eb381..82d82956 100644 --- a/spec/Provider/TaxRatePercentageProviderSpec.php +++ b/spec/Provider/TaxRatePercentageProviderSpec.php @@ -3,7 +3,7 @@ /* * This file is part of the Sylius package. * - * (c) Paweł Jędrzejewski + * (c) Sylius Sp. z o.o. * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/spec/Provider/UnitNetPriceProviderSpec.php b/spec/Provider/UnitNetPriceProviderSpec.php index bf32f388..be6442eb 100644 --- a/spec/Provider/UnitNetPriceProviderSpec.php +++ b/spec/Provider/UnitNetPriceProviderSpec.php @@ -3,7 +3,7 @@ /* * This file is part of the Sylius package. * - * (c) Paweł Jędrzejewski + * (c) Sylius Sp. z o.o. * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/spec/Security/Voter/InvoiceVoterSpec.php b/spec/Security/Voter/InvoiceVoterSpec.php index 8fa3d59b..1914d359 100644 --- a/spec/Security/Voter/InvoiceVoterSpec.php +++ b/spec/Security/Voter/InvoiceVoterSpec.php @@ -3,7 +3,7 @@ /* * This file is part of the Sylius package. * - * (c) Paweł Jędrzejewski + * (c) Sylius Sp. z o.o. * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/src/Cli/GenerateInvoicesCommand.php b/src/Cli/GenerateInvoicesCommand.php index 53fde135..71918404 100644 --- a/src/Cli/GenerateInvoicesCommand.php +++ b/src/Cli/GenerateInvoicesCommand.php @@ -3,7 +3,7 @@ /* * This file is part of the Sylius package. * - * (c) Paweł Jędrzejewski + * (c) Sylius Sp. z o.o. * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/src/Command/SendInvoiceEmail.php b/src/Command/SendInvoiceEmail.php index a51c14c6..8bec1578 100644 --- a/src/Command/SendInvoiceEmail.php +++ b/src/Command/SendInvoiceEmail.php @@ -3,7 +3,7 @@ /* * This file is part of the Sylius package. * - * (c) Paweł Jędrzejewski + * (c) Sylius Sp. z o.o. * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/src/CommandHandler/SendInvoiceEmailHandler.php b/src/CommandHandler/SendInvoiceEmailHandler.php index f04b454d..a38d2af3 100644 --- a/src/CommandHandler/SendInvoiceEmailHandler.php +++ b/src/CommandHandler/SendInvoiceEmailHandler.php @@ -3,7 +3,7 @@ /* * This file is part of the Sylius package. * - * (c) Paweł Jędrzejewski + * (c) Sylius Sp. z o.o. * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/src/Converter/LineItemsConverterInterface.php b/src/Converter/LineItemsConverterInterface.php index ac3c4f08..0de5632f 100644 --- a/src/Converter/LineItemsConverterInterface.php +++ b/src/Converter/LineItemsConverterInterface.php @@ -3,7 +3,7 @@ /* * This file is part of the Sylius package. * - * (c) Paweł Jędrzejewski + * (c) Sylius Sp. z o.o. * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/src/Converter/OrderItemUnitsToLineItemsConverter.php b/src/Converter/OrderItemUnitsToLineItemsConverter.php index 992210cd..e8c7353d 100644 --- a/src/Converter/OrderItemUnitsToLineItemsConverter.php +++ b/src/Converter/OrderItemUnitsToLineItemsConverter.php @@ -3,7 +3,7 @@ /* * This file is part of the Sylius package. * - * (c) Paweł Jędrzejewski + * (c) Sylius Sp. z o.o. * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/src/Converter/ShippingAdjustmentsToLineItemsConverter.php b/src/Converter/ShippingAdjustmentsToLineItemsConverter.php index e8a8b094..2e3e843b 100644 --- a/src/Converter/ShippingAdjustmentsToLineItemsConverter.php +++ b/src/Converter/ShippingAdjustmentsToLineItemsConverter.php @@ -3,7 +3,7 @@ /* * This file is part of the Sylius package. * - * (c) Paweł Jędrzejewski + * (c) Sylius Sp. z o.o. * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/src/Converter/TaxItemsConverter.php b/src/Converter/TaxItemsConverter.php index 4ef2494c..52a49a8a 100644 --- a/src/Converter/TaxItemsConverter.php +++ b/src/Converter/TaxItemsConverter.php @@ -3,7 +3,7 @@ /* * This file is part of the Sylius package. * - * (c) Paweł Jędrzejewski + * (c) Sylius Sp. z o.o. * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/src/Converter/TaxItemsConverterInterface.php b/src/Converter/TaxItemsConverterInterface.php index 66cab4bb..8bdf7abe 100644 --- a/src/Converter/TaxItemsConverterInterface.php +++ b/src/Converter/TaxItemsConverterInterface.php @@ -3,7 +3,7 @@ /* * This file is part of the Sylius package. * - * (c) Paweł Jędrzejewski + * (c) Sylius Sp. z o.o. * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/src/Creator/InvoiceCreator.php b/src/Creator/InvoiceCreator.php index b035aed2..d16597be 100644 --- a/src/Creator/InvoiceCreator.php +++ b/src/Creator/InvoiceCreator.php @@ -3,7 +3,7 @@ /* * This file is part of the Sylius package. * - * (c) Paweł Jędrzejewski + * (c) Sylius Sp. z o.o. * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/src/Creator/InvoiceCreatorInterface.php b/src/Creator/InvoiceCreatorInterface.php index fdff4c01..b71b65ca 100644 --- a/src/Creator/InvoiceCreatorInterface.php +++ b/src/Creator/InvoiceCreatorInterface.php @@ -3,7 +3,7 @@ /* * This file is part of the Sylius package. * - * (c) Paweł Jędrzejewski + * (c) Sylius Sp. z o.o. * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/src/Creator/MassInvoicesCreator.php b/src/Creator/MassInvoicesCreator.php index 70269593..7e3fe9ee 100644 --- a/src/Creator/MassInvoicesCreator.php +++ b/src/Creator/MassInvoicesCreator.php @@ -3,7 +3,7 @@ /* * This file is part of the Sylius package. * - * (c) Paweł Jędrzejewski + * (c) Sylius Sp. z o.o. * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/src/Creator/MassInvoicesCreatorInterface.php b/src/Creator/MassInvoicesCreatorInterface.php index 2f32530d..6879327e 100644 --- a/src/Creator/MassInvoicesCreatorInterface.php +++ b/src/Creator/MassInvoicesCreatorInterface.php @@ -3,7 +3,7 @@ /* * This file is part of the Sylius package. * - * (c) Paweł Jędrzejewski + * (c) Sylius Sp. z o.o. * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/src/DateTimeProvider.php b/src/DateTimeProvider.php index d35e96da..c3748cfc 100644 --- a/src/DateTimeProvider.php +++ b/src/DateTimeProvider.php @@ -3,7 +3,7 @@ /* * This file is part of the Sylius package. * - * (c) Paweł Jędrzejewski + * (c) Sylius Sp. z o.o. * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/src/DependencyInjection/Configuration.php b/src/DependencyInjection/Configuration.php index a0853c59..3c4d014e 100644 --- a/src/DependencyInjection/Configuration.php +++ b/src/DependencyInjection/Configuration.php @@ -3,7 +3,7 @@ /* * This file is part of the Sylius package. * - * (c) Paweł Jędrzejewski + * (c) Sylius Sp. z o.o. * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/src/DependencyInjection/SyliusInvoicingExtension.php b/src/DependencyInjection/SyliusInvoicingExtension.php index 98db1ef6..8ec89e1c 100644 --- a/src/DependencyInjection/SyliusInvoicingExtension.php +++ b/src/DependencyInjection/SyliusInvoicingExtension.php @@ -3,7 +3,7 @@ /* * This file is part of the Sylius package. * - * (c) Paweł Jędrzejewski + * (c) Sylius Sp. z o.o. * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/src/Doctrine/ORM/InvoiceRepository.php b/src/Doctrine/ORM/InvoiceRepository.php index 477c99a8..39d52eaf 100644 --- a/src/Doctrine/ORM/InvoiceRepository.php +++ b/src/Doctrine/ORM/InvoiceRepository.php @@ -3,7 +3,7 @@ /* * This file is part of the Sylius package. * - * (c) Paweł Jędrzejewski + * (c) Sylius Sp. z o.o. * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/src/Doctrine/ORM/InvoiceRepositoryInterface.php b/src/Doctrine/ORM/InvoiceRepositoryInterface.php index 6b29afa5..8d58be33 100644 --- a/src/Doctrine/ORM/InvoiceRepositoryInterface.php +++ b/src/Doctrine/ORM/InvoiceRepositoryInterface.php @@ -3,7 +3,7 @@ /* * This file is part of the Sylius package. * - * (c) Paweł Jędrzejewski + * (c) Sylius Sp. z o.o. * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/src/Email/Emails.php b/src/Email/Emails.php index d52785dd..2723784d 100644 --- a/src/Email/Emails.php +++ b/src/Email/Emails.php @@ -3,7 +3,7 @@ /* * This file is part of the Sylius package. * - * (c) Paweł Jędrzejewski + * (c) Sylius Sp. z o.o. * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/src/Email/InvoiceEmailSender.php b/src/Email/InvoiceEmailSender.php index 1c1a9db8..c9e3fd3c 100644 --- a/src/Email/InvoiceEmailSender.php +++ b/src/Email/InvoiceEmailSender.php @@ -3,7 +3,7 @@ /* * This file is part of the Sylius package. * - * (c) Paweł Jędrzejewski + * (c) Sylius Sp. z o.o. * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/src/Email/InvoiceEmailSenderInterface.php b/src/Email/InvoiceEmailSenderInterface.php index 2cd78c16..8798270b 100644 --- a/src/Email/InvoiceEmailSenderInterface.php +++ b/src/Email/InvoiceEmailSenderInterface.php @@ -3,7 +3,7 @@ /* * This file is part of the Sylius package. * - * (c) Paweł Jędrzejewski + * (c) Sylius Sp. z o.o. * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/src/Entity/BillingData.php b/src/Entity/BillingData.php index 5af09e8d..b8b6bb2f 100644 --- a/src/Entity/BillingData.php +++ b/src/Entity/BillingData.php @@ -3,7 +3,7 @@ /* * This file is part of the Sylius package. * - * (c) Paweł Jędrzejewski + * (c) Sylius Sp. z o.o. * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/src/Entity/BillingDataInterface.php b/src/Entity/BillingDataInterface.php index 272316d3..7dcac53d 100644 --- a/src/Entity/BillingDataInterface.php +++ b/src/Entity/BillingDataInterface.php @@ -3,7 +3,7 @@ /* * This file is part of the Sylius package. * - * (c) Paweł Jędrzejewski + * (c) Sylius Sp. z o.o. * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/src/Entity/Invoice.php b/src/Entity/Invoice.php index 9533ad07..efd96b1a 100644 --- a/src/Entity/Invoice.php +++ b/src/Entity/Invoice.php @@ -3,7 +3,7 @@ /* * This file is part of the Sylius package. * - * (c) Paweł Jędrzejewski + * (c) Sylius Sp. z o.o. * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/src/Entity/InvoiceInterface.php b/src/Entity/InvoiceInterface.php index 07fa9379..e516f47f 100644 --- a/src/Entity/InvoiceInterface.php +++ b/src/Entity/InvoiceInterface.php @@ -3,7 +3,7 @@ /* * This file is part of the Sylius package. * - * (c) Paweł Jędrzejewski + * (c) Sylius Sp. z o.o. * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/src/Entity/InvoiceSequence.php b/src/Entity/InvoiceSequence.php index c71419ee..064eb8e8 100644 --- a/src/Entity/InvoiceSequence.php +++ b/src/Entity/InvoiceSequence.php @@ -3,7 +3,7 @@ /* * This file is part of the Sylius package. * - * (c) Paweł Jędrzejewski + * (c) Sylius Sp. z o.o. * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/src/Entity/InvoiceSequenceInterface.php b/src/Entity/InvoiceSequenceInterface.php index 39f57e08..a263fe9a 100644 --- a/src/Entity/InvoiceSequenceInterface.php +++ b/src/Entity/InvoiceSequenceInterface.php @@ -3,7 +3,7 @@ /* * This file is part of the Sylius package. * - * (c) Paweł Jędrzejewski + * (c) Sylius Sp. z o.o. * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/src/Entity/InvoiceShopBillingData.php b/src/Entity/InvoiceShopBillingData.php index f65782b1..ac37b66f 100644 --- a/src/Entity/InvoiceShopBillingData.php +++ b/src/Entity/InvoiceShopBillingData.php @@ -3,7 +3,7 @@ /* * This file is part of the Sylius package. * - * (c) Paweł Jędrzejewski + * (c) Sylius Sp. z o.o. * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/src/Entity/InvoiceShopBillingDataInterface.php b/src/Entity/InvoiceShopBillingDataInterface.php index 7e478828..80ccaef8 100644 --- a/src/Entity/InvoiceShopBillingDataInterface.php +++ b/src/Entity/InvoiceShopBillingDataInterface.php @@ -3,7 +3,7 @@ /* * This file is part of the Sylius package. * - * (c) Paweł Jędrzejewski + * (c) Sylius Sp. z o.o. * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/src/Entity/LineItem.php b/src/Entity/LineItem.php index 98bcc92b..41599f7b 100644 --- a/src/Entity/LineItem.php +++ b/src/Entity/LineItem.php @@ -3,7 +3,7 @@ /* * This file is part of the Sylius package. * - * (c) Paweł Jędrzejewski + * (c) Sylius Sp. z o.o. * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/src/Entity/LineItemInterface.php b/src/Entity/LineItemInterface.php index 55288877..1bfd5219 100644 --- a/src/Entity/LineItemInterface.php +++ b/src/Entity/LineItemInterface.php @@ -3,7 +3,7 @@ /* * This file is part of the Sylius package. * - * (c) Paweł Jędrzejewski + * (c) Sylius Sp. z o.o. * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/src/Entity/TaxItem.php b/src/Entity/TaxItem.php index 9f691d13..3ec5e20d 100644 --- a/src/Entity/TaxItem.php +++ b/src/Entity/TaxItem.php @@ -3,7 +3,7 @@ /* * This file is part of the Sylius package. * - * (c) Paweł Jędrzejewski + * (c) Sylius Sp. z o.o. * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/src/Entity/TaxItemInterface.php b/src/Entity/TaxItemInterface.php index 7cad4627..dbf43392 100644 --- a/src/Entity/TaxItemInterface.php +++ b/src/Entity/TaxItemInterface.php @@ -3,7 +3,7 @@ /* * This file is part of the Sylius package. * - * (c) Paweł Jędrzejewski + * (c) Sylius Sp. z o.o. * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/src/Event/OrderPaymentPaid.php b/src/Event/OrderPaymentPaid.php index 6a359d21..f7824fa9 100644 --- a/src/Event/OrderPaymentPaid.php +++ b/src/Event/OrderPaymentPaid.php @@ -3,7 +3,7 @@ /* * This file is part of the Sylius package. * - * (c) Paweł Jędrzejewski + * (c) Sylius Sp. z o.o. * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/src/Event/OrderPlaced.php b/src/Event/OrderPlaced.php index b78a6771..43fc82eb 100644 --- a/src/Event/OrderPlaced.php +++ b/src/Event/OrderPlaced.php @@ -3,7 +3,7 @@ /* * This file is part of the Sylius package. * - * (c) Paweł Jędrzejewski + * (c) Sylius Sp. z o.o. * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/src/EventListener/CreateInvoiceOnOrderPlacedListener.php b/src/EventListener/CreateInvoiceOnOrderPlacedListener.php index da6d6cbc..e50bc1c5 100644 --- a/src/EventListener/CreateInvoiceOnOrderPlacedListener.php +++ b/src/EventListener/CreateInvoiceOnOrderPlacedListener.php @@ -3,7 +3,7 @@ /* * This file is part of the Sylius package. * - * (c) Paweł Jędrzejewski + * (c) Sylius Sp. z o.o. * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/src/EventListener/OrderPaymentPaidListener.php b/src/EventListener/OrderPaymentPaidListener.php index 3e150a99..77a624ea 100644 --- a/src/EventListener/OrderPaymentPaidListener.php +++ b/src/EventListener/OrderPaymentPaidListener.php @@ -3,7 +3,7 @@ /* * This file is part of the Sylius package. * - * (c) Paweł Jędrzejewski + * (c) Sylius Sp. z o.o. * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/src/EventProducer/OrderPaymentPaidProducer.php b/src/EventProducer/OrderPaymentPaidProducer.php index 14dc6c70..381a1fe4 100644 --- a/src/EventProducer/OrderPaymentPaidProducer.php +++ b/src/EventProducer/OrderPaymentPaidProducer.php @@ -3,7 +3,7 @@ /* * This file is part of the Sylius package. * - * (c) Paweł Jędrzejewski + * (c) Sylius Sp. z o.o. * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/src/EventProducer/OrderPlacedProducer.php b/src/EventProducer/OrderPlacedProducer.php index 89b115c8..8e99c333 100644 --- a/src/EventProducer/OrderPlacedProducer.php +++ b/src/EventProducer/OrderPlacedProducer.php @@ -3,7 +3,7 @@ /* * This file is part of the Sylius package. * - * (c) Paweł Jędrzejewski + * (c) Sylius Sp. z o.o. * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/src/Exception/InvoiceAlreadyGenerated.php b/src/Exception/InvoiceAlreadyGenerated.php index d551330b..5e3e102e 100644 --- a/src/Exception/InvoiceAlreadyGenerated.php +++ b/src/Exception/InvoiceAlreadyGenerated.php @@ -3,7 +3,7 @@ /* * This file is part of the Sylius package. * - * (c) Paweł Jędrzejewski + * (c) Sylius Sp. z o.o. * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/src/Exception/InvoiceNotAccessible.php b/src/Exception/InvoiceNotAccessible.php index d646db3e..163d9f16 100644 --- a/src/Exception/InvoiceNotAccessible.php +++ b/src/Exception/InvoiceNotAccessible.php @@ -3,7 +3,7 @@ /* * This file is part of the Sylius package. * - * (c) Paweł Jędrzejewski + * (c) Sylius Sp. z o.o. * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/src/Exception/LineItemsCannotBeMerged.php b/src/Exception/LineItemsCannotBeMerged.php index f4c24023..5cb5a1fc 100644 --- a/src/Exception/LineItemsCannotBeMerged.php +++ b/src/Exception/LineItemsCannotBeMerged.php @@ -3,7 +3,7 @@ /* * This file is part of the Sylius package. * - * (c) Paweł Jędrzejewski + * (c) Sylius Sp. z o.o. * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/src/Exception/MoreThanOneTaxAdjustment.php b/src/Exception/MoreThanOneTaxAdjustment.php index f560ff77..69435ffd 100644 --- a/src/Exception/MoreThanOneTaxAdjustment.php +++ b/src/Exception/MoreThanOneTaxAdjustment.php @@ -3,7 +3,7 @@ /* * This file is part of the Sylius package. * - * (c) Paweł Jędrzejewski + * (c) Sylius Sp. z o.o. * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/src/Factory/BillingDataFactory.php b/src/Factory/BillingDataFactory.php index 07f9aa0b..d3e21404 100644 --- a/src/Factory/BillingDataFactory.php +++ b/src/Factory/BillingDataFactory.php @@ -3,7 +3,7 @@ /* * This file is part of the Sylius package. * - * (c) Paweł Jędrzejewski + * (c) Sylius Sp. z o.o. * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/src/Factory/BillingDataFactoryInterface.php b/src/Factory/BillingDataFactoryInterface.php index 0329ebd5..ffebe5fa 100644 --- a/src/Factory/BillingDataFactoryInterface.php +++ b/src/Factory/BillingDataFactoryInterface.php @@ -3,7 +3,7 @@ /* * This file is part of the Sylius package. * - * (c) Paweł Jędrzejewski + * (c) Sylius Sp. z o.o. * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/src/Factory/InvoiceFactory.php b/src/Factory/InvoiceFactory.php index 3131df4f..f5fa297d 100644 --- a/src/Factory/InvoiceFactory.php +++ b/src/Factory/InvoiceFactory.php @@ -3,7 +3,7 @@ /* * This file is part of the Sylius package. * - * (c) Paweł Jędrzejewski + * (c) Sylius Sp. z o.o. * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/src/Factory/InvoiceFactoryInterface.php b/src/Factory/InvoiceFactoryInterface.php index 03678a65..9af2d9db 100644 --- a/src/Factory/InvoiceFactoryInterface.php +++ b/src/Factory/InvoiceFactoryInterface.php @@ -3,7 +3,7 @@ /* * This file is part of the Sylius package. * - * (c) Paweł Jędrzejewski + * (c) Sylius Sp. z o.o. * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/src/Factory/InvoiceShopBillingDataFactory.php b/src/Factory/InvoiceShopBillingDataFactory.php index e081c009..6f339008 100644 --- a/src/Factory/InvoiceShopBillingDataFactory.php +++ b/src/Factory/InvoiceShopBillingDataFactory.php @@ -3,7 +3,7 @@ /* * This file is part of the Sylius package. * - * (c) Paweł Jędrzejewski + * (c) Sylius Sp. z o.o. * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/src/Factory/InvoiceShopBillingDataFactoryInterface.php b/src/Factory/InvoiceShopBillingDataFactoryInterface.php index e901ab8b..0ec75406 100644 --- a/src/Factory/InvoiceShopBillingDataFactoryInterface.php +++ b/src/Factory/InvoiceShopBillingDataFactoryInterface.php @@ -3,7 +3,7 @@ /* * This file is part of the Sylius package. * - * (c) Paweł Jędrzejewski + * (c) Sylius Sp. z o.o. * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/src/Factory/LineItemFactory.php b/src/Factory/LineItemFactory.php index 5d6b2418..b3890163 100644 --- a/src/Factory/LineItemFactory.php +++ b/src/Factory/LineItemFactory.php @@ -3,7 +3,7 @@ /* * This file is part of the Sylius package. * - * (c) Paweł Jędrzejewski + * (c) Sylius Sp. z o.o. * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/src/Factory/LineItemFactoryInterface.php b/src/Factory/LineItemFactoryInterface.php index b22ff062..4515b03a 100644 --- a/src/Factory/LineItemFactoryInterface.php +++ b/src/Factory/LineItemFactoryInterface.php @@ -3,7 +3,7 @@ /* * This file is part of the Sylius package. * - * (c) Paweł Jędrzejewski + * (c) Sylius Sp. z o.o. * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/src/Factory/TaxItemFactory.php b/src/Factory/TaxItemFactory.php index 376c917e..4ea9240e 100644 --- a/src/Factory/TaxItemFactory.php +++ b/src/Factory/TaxItemFactory.php @@ -3,7 +3,7 @@ /* * This file is part of the Sylius package. * - * (c) Paweł Jędrzejewski + * (c) Sylius Sp. z o.o. * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/src/Factory/TaxItemFactoryInterface.php b/src/Factory/TaxItemFactoryInterface.php index d94da2c6..17a3afc3 100644 --- a/src/Factory/TaxItemFactoryInterface.php +++ b/src/Factory/TaxItemFactoryInterface.php @@ -3,7 +3,7 @@ /* * This file is part of the Sylius package. * - * (c) Paweł Jędrzejewski + * (c) Sylius Sp. z o.o. * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/src/Fixture/Factory/ShopBillingDataExampleFactory.php b/src/Fixture/Factory/ShopBillingDataExampleFactory.php index 0a4e90d7..7a21b43b 100644 --- a/src/Fixture/Factory/ShopBillingDataExampleFactory.php +++ b/src/Fixture/Factory/ShopBillingDataExampleFactory.php @@ -3,7 +3,7 @@ /* * This file is part of the Sylius package. * - * (c) Paweł Jędrzejewski + * (c) Sylius Sp. z o.o. * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/src/Fixture/Listener/InvoicesPurgerListener.php b/src/Fixture/Listener/InvoicesPurgerListener.php index 4c156ad8..4107fd1e 100644 --- a/src/Fixture/Listener/InvoicesPurgerListener.php +++ b/src/Fixture/Listener/InvoicesPurgerListener.php @@ -3,7 +3,7 @@ /* * This file is part of the Sylius package. * - * (c) Paweł Jędrzejewski + * (c) Sylius Sp. z o.o. * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/src/Fixture/ShopBillingDataFixture.php b/src/Fixture/ShopBillingDataFixture.php index 84d4f3ed..8985f2c0 100644 --- a/src/Fixture/ShopBillingDataFixture.php +++ b/src/Fixture/ShopBillingDataFixture.php @@ -3,7 +3,7 @@ /* * This file is part of the Sylius package. * - * (c) Paweł Jędrzejewski + * (c) Sylius Sp. z o.o. * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/src/Form/Type/ChannelFilterType.php b/src/Form/Type/ChannelFilterType.php index 969028b7..59c2cf93 100644 --- a/src/Form/Type/ChannelFilterType.php +++ b/src/Form/Type/ChannelFilterType.php @@ -3,7 +3,7 @@ /* * This file is part of the Sylius package. * - * (c) Paweł Jędrzejewski + * (c) Sylius Sp. z o.o. * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/src/Generator/InvoiceFileNameGenerator.php b/src/Generator/InvoiceFileNameGenerator.php index a8cb7f3c..5ab62abf 100644 --- a/src/Generator/InvoiceFileNameGenerator.php +++ b/src/Generator/InvoiceFileNameGenerator.php @@ -3,7 +3,7 @@ /* * This file is part of the Sylius package. * - * (c) Paweł Jędrzejewski + * (c) Sylius Sp. z o.o. * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/src/Generator/InvoiceFileNameGeneratorInterface.php b/src/Generator/InvoiceFileNameGeneratorInterface.php index d1104fd5..f57fe7f5 100644 --- a/src/Generator/InvoiceFileNameGeneratorInterface.php +++ b/src/Generator/InvoiceFileNameGeneratorInterface.php @@ -3,7 +3,7 @@ /* * This file is part of the Sylius package. * - * (c) Paweł Jędrzejewski + * (c) Sylius Sp. z o.o. * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/src/Generator/InvoiceGenerator.php b/src/Generator/InvoiceGenerator.php index 0c0b81e3..3de630e7 100644 --- a/src/Generator/InvoiceGenerator.php +++ b/src/Generator/InvoiceGenerator.php @@ -3,7 +3,7 @@ /* * This file is part of the Sylius package. * - * (c) Paweł Jędrzejewski + * (c) Sylius Sp. z o.o. * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/src/Generator/InvoiceGeneratorInterface.php b/src/Generator/InvoiceGeneratorInterface.php index fc86d616..d3a6956c 100644 --- a/src/Generator/InvoiceGeneratorInterface.php +++ b/src/Generator/InvoiceGeneratorInterface.php @@ -3,7 +3,7 @@ /* * This file is part of the Sylius package. * - * (c) Paweł Jędrzejewski + * (c) Sylius Sp. z o.o. * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/src/Generator/InvoiceIdentifierGenerator.php b/src/Generator/InvoiceIdentifierGenerator.php index c7ab6f53..b782d011 100644 --- a/src/Generator/InvoiceIdentifierGenerator.php +++ b/src/Generator/InvoiceIdentifierGenerator.php @@ -3,7 +3,7 @@ /* * This file is part of the Sylius package. * - * (c) Paweł Jędrzejewski + * (c) Sylius Sp. z o.o. * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/src/Generator/InvoiceNumberGenerator.php b/src/Generator/InvoiceNumberGenerator.php index aae89217..dc73d35b 100644 --- a/src/Generator/InvoiceNumberGenerator.php +++ b/src/Generator/InvoiceNumberGenerator.php @@ -3,7 +3,7 @@ /* * This file is part of the Sylius package. * - * (c) Paweł Jędrzejewski + * (c) Sylius Sp. z o.o. * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/src/Generator/InvoicePdfFileGenerator.php b/src/Generator/InvoicePdfFileGenerator.php index dae23010..15387040 100644 --- a/src/Generator/InvoicePdfFileGenerator.php +++ b/src/Generator/InvoicePdfFileGenerator.php @@ -3,7 +3,7 @@ /* * This file is part of the Sylius package. * - * (c) Paweł Jędrzejewski + * (c) Sylius Sp. z o.o. * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/src/Generator/InvoicePdfFileGeneratorInterface.php b/src/Generator/InvoicePdfFileGeneratorInterface.php index f8b907c7..7aa138f4 100644 --- a/src/Generator/InvoicePdfFileGeneratorInterface.php +++ b/src/Generator/InvoicePdfFileGeneratorInterface.php @@ -3,7 +3,7 @@ /* * This file is part of the Sylius package. * - * (c) Paweł Jędrzejewski + * (c) Sylius Sp. z o.o. * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/src/Generator/PdfOptionsGenerator.php b/src/Generator/PdfOptionsGenerator.php index ed20ffc6..92341dbd 100644 --- a/src/Generator/PdfOptionsGenerator.php +++ b/src/Generator/PdfOptionsGenerator.php @@ -3,7 +3,7 @@ /* * This file is part of the Sylius package. * - * (c) Paweł Jędrzejewski + * (c) Sylius Sp. z o.o. * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/src/Generator/PdfOptionsGeneratorInterface.php b/src/Generator/PdfOptionsGeneratorInterface.php index f88b494b..dfca3a0e 100644 --- a/src/Generator/PdfOptionsGeneratorInterface.php +++ b/src/Generator/PdfOptionsGeneratorInterface.php @@ -3,7 +3,7 @@ /* * This file is part of the Sylius package. * - * (c) Paweł Jędrzejewski + * (c) Sylius Sp. z o.o. * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/src/Generator/SequentialInvoiceNumberGenerator.php b/src/Generator/SequentialInvoiceNumberGenerator.php index 33830082..8cc320b0 100644 --- a/src/Generator/SequentialInvoiceNumberGenerator.php +++ b/src/Generator/SequentialInvoiceNumberGenerator.php @@ -3,7 +3,7 @@ /* * This file is part of the Sylius package. * - * (c) Paweł Jędrzejewski + * (c) Sylius Sp. z o.o. * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/src/Generator/TwigToPdfGenerator.php b/src/Generator/TwigToPdfGenerator.php index e5fed34d..e2c363d4 100644 --- a/src/Generator/TwigToPdfGenerator.php +++ b/src/Generator/TwigToPdfGenerator.php @@ -3,7 +3,7 @@ /* * This file is part of the Sylius package. * - * (c) Paweł Jędrzejewski + * (c) Sylius Sp. z o.o. * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/src/Generator/TwigToPdfGeneratorInterface.php b/src/Generator/TwigToPdfGeneratorInterface.php index 7797943d..3312fb86 100644 --- a/src/Generator/TwigToPdfGeneratorInterface.php +++ b/src/Generator/TwigToPdfGeneratorInterface.php @@ -3,7 +3,7 @@ /* * This file is part of the Sylius package. * - * (c) Paweł Jędrzejewski + * (c) Sylius Sp. z o.o. * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/src/Generator/UuidInvoiceIdentifierGenerator.php b/src/Generator/UuidInvoiceIdentifierGenerator.php index 7734f263..f04bd8c3 100644 --- a/src/Generator/UuidInvoiceIdentifierGenerator.php +++ b/src/Generator/UuidInvoiceIdentifierGenerator.php @@ -3,7 +3,7 @@ /* * This file is part of the Sylius package. * - * (c) Paweł Jędrzejewski + * (c) Sylius Sp. z o.o. * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/src/Grid/Filter/ChannelFilter.php b/src/Grid/Filter/ChannelFilter.php index 2bddb2b1..15bc9d69 100644 --- a/src/Grid/Filter/ChannelFilter.php +++ b/src/Grid/Filter/ChannelFilter.php @@ -3,7 +3,7 @@ /* * This file is part of the Sylius package. * - * (c) Paweł Jędrzejewski + * (c) Sylius Sp. z o.o. * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/src/Manager/InvoiceFileManager.php b/src/Manager/InvoiceFileManager.php index 0b87c870..9acc7305 100644 --- a/src/Manager/InvoiceFileManager.php +++ b/src/Manager/InvoiceFileManager.php @@ -3,7 +3,7 @@ /* * This file is part of the Sylius package. * - * (c) Paweł Jędrzejewski + * (c) Sylius Sp. z o.o. * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/src/Manager/InvoiceFileManagerInterface.php b/src/Manager/InvoiceFileManagerInterface.php index c43463cf..40e922a4 100644 --- a/src/Manager/InvoiceFileManagerInterface.php +++ b/src/Manager/InvoiceFileManagerInterface.php @@ -3,7 +3,7 @@ /* * This file is part of the Sylius package. * - * (c) Paweł Jędrzejewski + * (c) Sylius Sp. z o.o. * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/src/Migrations/Version20180626120743.php b/src/Migrations/Version20180626120743.php index b14d7bf6..4eaf9fb3 100644 --- a/src/Migrations/Version20180626120743.php +++ b/src/Migrations/Version20180626120743.php @@ -3,7 +3,7 @@ /* * This file is part of the Sylius package. * - * (c) Paweł Jędrzejewski + * (c) Sylius Sp. z o.o. * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/src/Migrations/Version20180711070226.php b/src/Migrations/Version20180711070226.php index 44c41a4c..9165e8c5 100644 --- a/src/Migrations/Version20180711070226.php +++ b/src/Migrations/Version20180711070226.php @@ -3,7 +3,7 @@ /* * This file is part of the Sylius package. * - * (c) Paweł Jędrzejewski + * (c) Sylius Sp. z o.o. * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/src/Migrations/Version20180711084815.php b/src/Migrations/Version20180711084815.php index f48f7691..9aad78d4 100644 --- a/src/Migrations/Version20180711084815.php +++ b/src/Migrations/Version20180711084815.php @@ -3,7 +3,7 @@ /* * This file is part of the Sylius package. * - * (c) Paweł Jędrzejewski + * (c) Sylius Sp. z o.o. * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/src/Migrations/Version20180801083047.php b/src/Migrations/Version20180801083047.php index c9c1196b..a88f9daf 100644 --- a/src/Migrations/Version20180801083047.php +++ b/src/Migrations/Version20180801083047.php @@ -3,7 +3,7 @@ /* * This file is part of the Sylius package. * - * (c) Paweł Jędrzejewski + * (c) Sylius Sp. z o.o. * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/src/Migrations/Version20180826064735.php b/src/Migrations/Version20180826064735.php index 7cd312c0..da88e559 100644 --- a/src/Migrations/Version20180826064735.php +++ b/src/Migrations/Version20180826064735.php @@ -3,7 +3,7 @@ /* * This file is part of the Sylius package. * - * (c) Paweł Jędrzejewski + * (c) Sylius Sp. z o.o. * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/src/Migrations/Version20190103134228.php b/src/Migrations/Version20190103134228.php index cbcb4ad6..3eafb48f 100644 --- a/src/Migrations/Version20190103134228.php +++ b/src/Migrations/Version20190103134228.php @@ -3,7 +3,7 @@ /* * This file is part of the Sylius package. * - * (c) Paweł Jędrzejewski + * (c) Sylius Sp. z o.o. * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/src/Migrations/Version20190604071441.php b/src/Migrations/Version20190604071441.php index f8b8e00e..acb52ab2 100644 --- a/src/Migrations/Version20190604071441.php +++ b/src/Migrations/Version20190604071441.php @@ -3,7 +3,7 @@ /* * This file is part of the Sylius package. * - * (c) Paweł Jędrzejewski + * (c) Sylius Sp. z o.o. * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/src/Migrations/Version20190607001446.php b/src/Migrations/Version20190607001446.php index 8188c5b4..f8899a0e 100644 --- a/src/Migrations/Version20190607001446.php +++ b/src/Migrations/Version20190607001446.php @@ -3,7 +3,7 @@ /* * This file is part of the Sylius package. * - * (c) Paweł Jędrzejewski + * (c) Sylius Sp. z o.o. * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/src/Migrations/Version20190607002945.php b/src/Migrations/Version20190607002945.php index f40f4713..926e0310 100644 --- a/src/Migrations/Version20190607002945.php +++ b/src/Migrations/Version20190607002945.php @@ -3,7 +3,7 @@ /* * This file is part of the Sylius package. * - * (c) Paweł Jędrzejewski + * (c) Sylius Sp. z o.o. * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/src/Migrations/Version20191016124548.php b/src/Migrations/Version20191016124548.php index 2caf8ae2..1205bd97 100644 --- a/src/Migrations/Version20191016124548.php +++ b/src/Migrations/Version20191016124548.php @@ -3,7 +3,7 @@ /* * This file is part of the Sylius package. * - * (c) Paweł Jędrzejewski + * (c) Sylius Sp. z o.o. * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/src/Migrations/Version20191216134233.php b/src/Migrations/Version20191216134233.php index 4696dd2d..8065f137 100644 --- a/src/Migrations/Version20191216134233.php +++ b/src/Migrations/Version20191216134233.php @@ -3,7 +3,7 @@ /* * This file is part of the Sylius package. * - * (c) Paweł Jędrzejewski + * (c) Sylius Sp. z o.o. * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/src/Migrations/Version20210607115930.php b/src/Migrations/Version20210607115930.php index b087b072..a984468e 100644 --- a/src/Migrations/Version20210607115930.php +++ b/src/Migrations/Version20210607115930.php @@ -3,7 +3,7 @@ /* * This file is part of the Sylius package. * - * (c) Paweł Jędrzejewski + * (c) Sylius Sp. z o.o. * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/src/Migrations/Version20210729071327.php b/src/Migrations/Version20210729071327.php index aed7cc61..16a8a6d8 100644 --- a/src/Migrations/Version20210729071327.php +++ b/src/Migrations/Version20210729071327.php @@ -3,7 +3,7 @@ /* * This file is part of the Sylius package. * - * (c) Paweł Jędrzejewski + * (c) Sylius Sp. z o.o. * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/src/Migrations/Version20210812125029.php b/src/Migrations/Version20210812125029.php index c3f94fa3..fb644dc0 100644 --- a/src/Migrations/Version20210812125029.php +++ b/src/Migrations/Version20210812125029.php @@ -3,7 +3,7 @@ /* * This file is part of the Sylius package. * - * (c) Paweł Jędrzejewski + * (c) Sylius Sp. z o.o. * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/src/Migrations/Version20220811054008.php b/src/Migrations/Version20220811054008.php index 32a7cc90..1f6bd379 100644 --- a/src/Migrations/Version20220811054008.php +++ b/src/Migrations/Version20220811054008.php @@ -3,7 +3,7 @@ /* * This file is part of the Sylius package. * - * (c) Paweł Jędrzejewski + * (c) Sylius Sp. z o.o. * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/src/Model/InvoicePdf.php b/src/Model/InvoicePdf.php index 1fa6843e..14044935 100644 --- a/src/Model/InvoicePdf.php +++ b/src/Model/InvoicePdf.php @@ -3,7 +3,7 @@ /* * This file is part of the Sylius package. * - * (c) Paweł Jędrzejewski + * (c) Sylius Sp. z o.o. * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/src/Provider/ChannelColorProvider.php b/src/Provider/ChannelColorProvider.php index 0e57069a..95a7f6af 100644 --- a/src/Provider/ChannelColorProvider.php +++ b/src/Provider/ChannelColorProvider.php @@ -3,7 +3,7 @@ /* * This file is part of the Sylius package. * - * (c) Paweł Jędrzejewski + * (c) Sylius Sp. z o.o. * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/src/Provider/ChannelColorProviderInterface.php b/src/Provider/ChannelColorProviderInterface.php index 004e529f..f04aa863 100644 --- a/src/Provider/ChannelColorProviderInterface.php +++ b/src/Provider/ChannelColorProviderInterface.php @@ -3,7 +3,7 @@ /* * This file is part of the Sylius package. * - * (c) Paweł Jędrzejewski + * (c) Sylius Sp. z o.o. * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/src/Provider/InvoiceFileProvider.php b/src/Provider/InvoiceFileProvider.php index 9db2ed85..c65bed8e 100644 --- a/src/Provider/InvoiceFileProvider.php +++ b/src/Provider/InvoiceFileProvider.php @@ -3,7 +3,7 @@ /* * This file is part of the Sylius package. * - * (c) Paweł Jędrzejewski + * (c) Sylius Sp. z o.o. * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/src/Provider/InvoiceFileProviderInterface.php b/src/Provider/InvoiceFileProviderInterface.php index fbf910f3..7817f0df 100644 --- a/src/Provider/InvoiceFileProviderInterface.php +++ b/src/Provider/InvoiceFileProviderInterface.php @@ -3,7 +3,7 @@ /* * This file is part of the Sylius package. * - * (c) Paweł Jędrzejewski + * (c) Sylius Sp. z o.o. * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/src/Provider/TaxRatePercentageProvider.php b/src/Provider/TaxRatePercentageProvider.php index 00bb2431..f3dbd1fe 100644 --- a/src/Provider/TaxRatePercentageProvider.php +++ b/src/Provider/TaxRatePercentageProvider.php @@ -3,7 +3,7 @@ /* * This file is part of the Sylius package. * - * (c) Paweł Jędrzejewski + * (c) Sylius Sp. z o.o. * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/src/Provider/TaxRatePercentageProviderInterface.php b/src/Provider/TaxRatePercentageProviderInterface.php index 510e076b..85bf9eaa 100644 --- a/src/Provider/TaxRatePercentageProviderInterface.php +++ b/src/Provider/TaxRatePercentageProviderInterface.php @@ -3,7 +3,7 @@ /* * This file is part of the Sylius package. * - * (c) Paweł Jędrzejewski + * (c) Sylius Sp. z o.o. * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/src/Provider/UnitNetPriceProvider.php b/src/Provider/UnitNetPriceProvider.php index 4688e115..4af6cf24 100644 --- a/src/Provider/UnitNetPriceProvider.php +++ b/src/Provider/UnitNetPriceProvider.php @@ -3,7 +3,7 @@ /* * This file is part of the Sylius package. * - * (c) Paweł Jędrzejewski + * (c) Sylius Sp. z o.o. * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/src/Provider/UnitNetPriceProviderInterface.php b/src/Provider/UnitNetPriceProviderInterface.php index 9033a229..cc0f4e8f 100644 --- a/src/Provider/UnitNetPriceProviderInterface.php +++ b/src/Provider/UnitNetPriceProviderInterface.php @@ -3,7 +3,7 @@ /* * This file is part of the Sylius package. * - * (c) Paweł Jędrzejewski + * (c) Sylius Sp. z o.o. * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/src/Security/Voter/InvoiceVoter.php b/src/Security/Voter/InvoiceVoter.php index 34f6e5c0..82372456 100644 --- a/src/Security/Voter/InvoiceVoter.php +++ b/src/Security/Voter/InvoiceVoter.php @@ -3,7 +3,7 @@ /* * This file is part of the Sylius package. * - * (c) Paweł Jędrzejewski + * (c) Sylius Sp. z o.o. * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/src/SyliusInvoicingPlugin.php b/src/SyliusInvoicingPlugin.php index e9f09a86..81b8ff69 100644 --- a/src/SyliusInvoicingPlugin.php +++ b/src/SyliusInvoicingPlugin.php @@ -3,7 +3,7 @@ /* * This file is part of the Sylius package. * - * (c) Paweł Jędrzejewski + * (c) Sylius Sp. z o.o. * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/src/SystemDateTimeProvider.php b/src/SystemDateTimeProvider.php index 21f23123..ae7b51f2 100644 --- a/src/SystemDateTimeProvider.php +++ b/src/SystemDateTimeProvider.php @@ -3,7 +3,7 @@ /* * This file is part of the Sylius package. * - * (c) Paweł Jędrzejewski + * (c) Sylius Sp. z o.o. * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/src/Twig/ChannelColorExtension.php b/src/Twig/ChannelColorExtension.php index f522f2da..b398aa62 100644 --- a/src/Twig/ChannelColorExtension.php +++ b/src/Twig/ChannelColorExtension.php @@ -3,7 +3,7 @@ /* * This file is part of the Sylius package. * - * (c) Paweł Jędrzejewski + * (c) Sylius Sp. z o.o. * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/src/Ui/Action/Admin/ResendInvoiceAction.php b/src/Ui/Action/Admin/ResendInvoiceAction.php index fb28bc7f..8f3abf35 100644 --- a/src/Ui/Action/Admin/ResendInvoiceAction.php +++ b/src/Ui/Action/Admin/ResendInvoiceAction.php @@ -3,7 +3,7 @@ /* * This file is part of the Sylius package. * - * (c) Paweł Jędrzejewski + * (c) Sylius Sp. z o.o. * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/src/Ui/Action/DownloadInvoiceAction.php b/src/Ui/Action/DownloadInvoiceAction.php index 32013403..af5f84cf 100644 --- a/src/Ui/Action/DownloadInvoiceAction.php +++ b/src/Ui/Action/DownloadInvoiceAction.php @@ -3,7 +3,7 @@ /* * This file is part of the Sylius package. * - * (c) Paweł Jędrzejewski + * (c) Sylius Sp. z o.o. * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/src/Ui/Menu/AdminMenuListener.php b/src/Ui/Menu/AdminMenuListener.php index cff57a7e..674c0b22 100644 --- a/src/Ui/Menu/AdminMenuListener.php +++ b/src/Ui/Menu/AdminMenuListener.php @@ -3,7 +3,7 @@ /* * This file is part of the Sylius package. * - * (c) Paweł Jędrzejewski + * (c) Sylius Sp. z o.o. * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/src/Ui/RedirectToOrderShowAction.php b/src/Ui/RedirectToOrderShowAction.php index 2fdb6404..2407670e 100644 --- a/src/Ui/RedirectToOrderShowAction.php +++ b/src/Ui/RedirectToOrderShowAction.php @@ -3,7 +3,7 @@ /* * This file is part of the Sylius package. * - * (c) Paweł Jędrzejewski + * (c) Sylius Sp. z o.o. * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/tests/DependencyInjection/SyliusInvoicingConfigurationTest.php b/tests/DependencyInjection/SyliusInvoicingConfigurationTest.php index a2371c4a..7e068130 100644 --- a/tests/DependencyInjection/SyliusInvoicingConfigurationTest.php +++ b/tests/DependencyInjection/SyliusInvoicingConfigurationTest.php @@ -3,7 +3,7 @@ /* * This file is part of the Sylius package. * - * (c) Paweł Jędrzejewski + * (c) Sylius Sp. z o.o. * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/tests/DependencyInjection/SyliusInvoicingExtensionTest.php b/tests/DependencyInjection/SyliusInvoicingExtensionTest.php index aa9764ee..2bb7fdea 100644 --- a/tests/DependencyInjection/SyliusInvoicingExtensionTest.php +++ b/tests/DependencyInjection/SyliusInvoicingExtensionTest.php @@ -3,7 +3,7 @@ /* * This file is part of the Sylius package. * - * (c) Paweł Jędrzejewski + * (c) Sylius Sp. z o.o. * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code.