diff --git a/src/Context/ShippingGatewayContext.php b/src/Context/ShippingGatewayContext.php index c81b94f..9f529f9 100644 --- a/src/Context/ShippingGatewayContext.php +++ b/src/Context/ShippingGatewayContext.php @@ -7,6 +7,7 @@ * You can find more information about us on https://bitbag.shop and write us * an email on mikolaj.krol@bitbag.pl. */ + declare(strict_types=1); namespace BitBag\ShippingExportPlugin\Context; diff --git a/src/Context/ShippingGatewayContextInterface.php b/src/Context/ShippingGatewayContextInterface.php index 82fa45b..4e339f9 100644 --- a/src/Context/ShippingGatewayContextInterface.php +++ b/src/Context/ShippingGatewayContextInterface.php @@ -7,6 +7,7 @@ * You can find more information about us on https://bitbag.shop and write us * an email on mikolaj.krol@bitbag.pl. */ + declare(strict_types=1); namespace BitBag\ShippingExportPlugin\Context; diff --git a/src/Controller/ShippingExportController.php b/src/Controller/ShippingExportController.php index 23da1fa..4cd1d58 100644 --- a/src/Controller/ShippingExportController.php +++ b/src/Controller/ShippingExportController.php @@ -7,6 +7,7 @@ * You can find more information about us on https://bitbag.shop and write us * an email on mikolaj.krol@bitbag.pl. */ + declare(strict_types=1); namespace BitBag\ShippingExportPlugin\Controller; diff --git a/src/Controller/ShippingGatewayController.php b/src/Controller/ShippingGatewayController.php index b64c354..dac647d 100644 --- a/src/Controller/ShippingGatewayController.php +++ b/src/Controller/ShippingGatewayController.php @@ -7,6 +7,7 @@ * You can find more information about us on https://bitbag.shop and write us * an email on mikolaj.krol@bitbag.pl. */ + declare(strict_types=1); namespace BitBag\ShippingExportPlugin\Controller; diff --git a/src/DependencyInjection/Compiler/RegisterShippingGatewayConfigTypePass.php b/src/DependencyInjection/Compiler/RegisterShippingGatewayConfigTypePass.php index ab56f0c..45e3791 100644 --- a/src/DependencyInjection/Compiler/RegisterShippingGatewayConfigTypePass.php +++ b/src/DependencyInjection/Compiler/RegisterShippingGatewayConfigTypePass.php @@ -7,6 +7,7 @@ * You can find more information about us on https://bitbag.shop and write us * an email on mikolaj.krol@bitbag.pl. */ + declare(strict_types=1); namespace BitBag\ShippingExportPlugin\DependencyInjection\Compiler; diff --git a/src/DependencyInjection/ShippingExportExtension.php b/src/DependencyInjection/ShippingExportExtension.php index 3a4eedb..c6247d9 100644 --- a/src/DependencyInjection/ShippingExportExtension.php +++ b/src/DependencyInjection/ShippingExportExtension.php @@ -7,6 +7,7 @@ * You can find more information about us on https://bitbag.shop and write us * an email on mikolaj.krol@bitbag.pl. */ + declare(strict_types=1); namespace BitBag\ShippingExportPlugin\DependencyInjection; diff --git a/src/Entity/ShippingExport.php b/src/Entity/ShippingExport.php index 9142bae..c6de2df 100644 --- a/src/Entity/ShippingExport.php +++ b/src/Entity/ShippingExport.php @@ -7,6 +7,7 @@ * You can find more information about us on https://bitbag.shop and write us * an email on mikolaj.krol@bitbag.pl. */ + declare(strict_types=1); namespace BitBag\ShippingExportPlugin\Entity; diff --git a/src/Entity/ShippingExportInterface.php b/src/Entity/ShippingExportInterface.php index 80f5fa8..e543681 100644 --- a/src/Entity/ShippingExportInterface.php +++ b/src/Entity/ShippingExportInterface.php @@ -7,6 +7,7 @@ * You can find more information about us on https://bitbag.shop and write us * an email on mikolaj.krol@bitbag.pl. */ + declare(strict_types=1); namespace BitBag\ShippingExportPlugin\Entity; diff --git a/src/Entity/ShippingGateway.php b/src/Entity/ShippingGateway.php index dbd1621..ba0c1ee 100644 --- a/src/Entity/ShippingGateway.php +++ b/src/Entity/ShippingGateway.php @@ -7,6 +7,7 @@ * You can find more information about us on https://bitbag.shop and write us * an email on mikolaj.krol@bitbag.pl. */ + declare(strict_types=1); namespace BitBag\ShippingExportPlugin\Entity; diff --git a/src/Entity/ShippingGatewayInterface.php b/src/Entity/ShippingGatewayInterface.php index 2863986..086b714 100644 --- a/src/Entity/ShippingGatewayInterface.php +++ b/src/Entity/ShippingGatewayInterface.php @@ -7,6 +7,7 @@ * You can find more information about us on https://bitbag.shop and write us * an email on mikolaj.krol@bitbag.pl. */ + declare(strict_types=1); namespace BitBag\ShippingExportPlugin\Entity; diff --git a/src/Event/ExportShipmentEvent.php b/src/Event/ExportShipmentEvent.php index ca0535e..0838879 100644 --- a/src/Event/ExportShipmentEvent.php +++ b/src/Event/ExportShipmentEvent.php @@ -7,6 +7,7 @@ * You can find more information about us on https://bitbag.shop and write us * an email on mikolaj.krol@bitbag.pl. */ + declare(strict_types=1); namespace BitBag\ShippingExportPlugin\Event; diff --git a/src/EventListener/PlacingShipmentForGatewayEventListener.php b/src/EventListener/PlacingShipmentForGatewayEventListener.php index 18994cc..95ce48b 100644 --- a/src/EventListener/PlacingShipmentForGatewayEventListener.php +++ b/src/EventListener/PlacingShipmentForGatewayEventListener.php @@ -7,6 +7,7 @@ * You can find more information about us on https://bitbag.shop and write us * an email on mikolaj.krol@bitbag.pl. */ + declare(strict_types=1); namespace BitBag\ShippingExportPlugin\EventListener; diff --git a/src/Exception/ShippingGatewayLabelNotFound.php b/src/Exception/ShippingGatewayLabelNotFound.php index c371cf1..d66a495 100644 --- a/src/Exception/ShippingGatewayLabelNotFound.php +++ b/src/Exception/ShippingGatewayLabelNotFound.php @@ -7,6 +7,7 @@ * You can find more information about us on https://bitbag.shop and write us * an email on mikolaj.krol@bitbag.pl. */ + declare(strict_types=1); namespace BitBag\ShippingExportPlugin\Exception; diff --git a/src/Exception/ShippingGatewayNotFoundException.php b/src/Exception/ShippingGatewayNotFoundException.php index 0bb5d17..028b7c7 100644 --- a/src/Exception/ShippingGatewayNotFoundException.php +++ b/src/Exception/ShippingGatewayNotFoundException.php @@ -7,6 +7,7 @@ * You can find more information about us on https://bitbag.shop and write us * an email on mikolaj.krol@bitbag.pl. */ + declare(strict_types=1); namespace BitBag\ShippingExportPlugin\Exception; diff --git a/src/Form/Type/ShippingGatewayType.php b/src/Form/Type/ShippingGatewayType.php index 16cf5f9..2ee9e27 100644 --- a/src/Form/Type/ShippingGatewayType.php +++ b/src/Form/Type/ShippingGatewayType.php @@ -7,6 +7,7 @@ * You can find more information about us on https://bitbag.shop and write us * an email on mikolaj.krol@bitbag.pl. */ + declare(strict_types=1); namespace BitBag\ShippingExportPlugin\Form\Type; diff --git a/src/Menu/ShippingExportMenuBuilder.php b/src/Menu/ShippingExportMenuBuilder.php index cb9dc65..36c015e 100644 --- a/src/Menu/ShippingExportMenuBuilder.php +++ b/src/Menu/ShippingExportMenuBuilder.php @@ -7,6 +7,7 @@ * You can find more information about us on https://bitbag.shop and write us * an email on mikolaj.krol@bitbag.pl. */ + declare(strict_types=1); namespace BitBag\ShippingExportPlugin\Menu; diff --git a/src/Menu/ShippingGatewayMenuBuilder.php b/src/Menu/ShippingGatewayMenuBuilder.php index 38176a2..6c0c5fa 100644 --- a/src/Menu/ShippingGatewayMenuBuilder.php +++ b/src/Menu/ShippingGatewayMenuBuilder.php @@ -7,6 +7,7 @@ * You can find more information about us on https://bitbag.shop and write us * an email on mikolaj.krol@bitbag.pl. */ + declare(strict_types=1); namespace BitBag\ShippingExportPlugin\Menu; diff --git a/src/Repository/ShippingExportRepository.php b/src/Repository/ShippingExportRepository.php index 9d5c4a0..aa2c2f9 100644 --- a/src/Repository/ShippingExportRepository.php +++ b/src/Repository/ShippingExportRepository.php @@ -7,6 +7,7 @@ * You can find more information about us on https://bitbag.shop and write us * an email on mikolaj.krol@bitbag.pl. */ + declare(strict_types=1); namespace BitBag\ShippingExportPlugin\Repository; diff --git a/src/Repository/ShippingExportRepositoryInterface.php b/src/Repository/ShippingExportRepositoryInterface.php index b1cb55c..2f02930 100644 --- a/src/Repository/ShippingExportRepositoryInterface.php +++ b/src/Repository/ShippingExportRepositoryInterface.php @@ -7,6 +7,7 @@ * You can find more information about us on https://bitbag.shop and write us * an email on mikolaj.krol@bitbag.pl. */ + declare(strict_types=1); namespace BitBag\ShippingExportPlugin\Repository; diff --git a/src/Repository/ShippingGatewayRepository.php b/src/Repository/ShippingGatewayRepository.php index b72ee77..1185389 100644 --- a/src/Repository/ShippingGatewayRepository.php +++ b/src/Repository/ShippingGatewayRepository.php @@ -7,6 +7,7 @@ * You can find more information about us on https://bitbag.shop and write us * an email on mikolaj.krol@bitbag.pl. */ + declare(strict_types=1); namespace BitBag\ShippingExportPlugin\Repository; diff --git a/src/Repository/ShippingGatewayRepositoryInterface.php b/src/Repository/ShippingGatewayRepositoryInterface.php index fe866d7..74520d7 100644 --- a/src/Repository/ShippingGatewayRepositoryInterface.php +++ b/src/Repository/ShippingGatewayRepositoryInterface.php @@ -7,6 +7,7 @@ * You can find more information about us on https://bitbag.shop and write us * an email on mikolaj.krol@bitbag.pl. */ + declare(strict_types=1); namespace BitBag\ShippingExportPlugin\Repository; diff --git a/src/Resources/translations/messages.en.yml b/src/Resources/translations/messages.en.yml index fa41beb..a39fc97 100644 --- a/src/Resources/translations/messages.en.yml +++ b/src/Resources/translations/messages.en.yml @@ -18,4 +18,4 @@ bitbag: exported_at: Exported at exported: Exported not_exported_yet: Not exported yet - no_new_shipments_to_export: There are no new shipments to export. \ No newline at end of file + no_new_shipments_to_export: There are no new shipments to export. diff --git a/src/Resources/translations/messages.pl.yml b/src/Resources/translations/messages.pl.yml index 0bd7d79..ddf24ae 100644 --- a/src/Resources/translations/messages.pl.yml +++ b/src/Resources/translations/messages.pl.yml @@ -18,4 +18,4 @@ bitbag: exported_at: Eksportowano exported: Eksportowano not_exported_yet: Nie eksportowano - no_new_shipments_to_export: Brak nowych przesyłek do wyeksportowania. \ No newline at end of file + no_new_shipments_to_export: Brak nowych przesyłek do wyeksportowania.