-
Notifications
You must be signed in to change notification settings - Fork 529
Fix duplicate work in AnnotationsPropertiesClassReflectionExtension->findClassReflectionWithProperty() #4268
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
7 commits
Select commit
Hold shift + click to select a range
ec60161
Fix duplicate work in AnnotationsPropertiesClassReflectionExtension->…
staabm 8c9ba03
analog fix in AnnotationsMethodsClassReflectionExtension
staabm b556528
analog fix in Mixin*ReflectionExtensions
staabm a9d3785
added test
staabm 83ba747
Update e2e-tests.yml
staabm fa7fbf6
Update e2e-tests.yml
staabm 776fd33
Update e2e-tests.yml
staabm File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
6 changes: 6 additions & 0 deletions
6
e2e/bug13425/plugins/oepnvMobilePlugin/lib/mobileService/2016.07/MobileServiceApi201607.php
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
<?php | ||
|
||
class MobileServiceApi201607 extends MobileServiceApi39 | ||
{ | ||
public const string VERSION = '2016.07'; | ||
} |
8 changes: 8 additions & 0 deletions
8
e2e/bug13425/plugins/oepnvMobilePlugin/lib/mobileService/2016.09/MobileServiceApi201609.php
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
<?php | ||
|
||
use EosUptrade\TICKeos\Bundle\TICKeosMobileBundle\Exception\MobileServiceException; | ||
|
||
class MobileServiceApi201609 extends MobileServiceApi201607 | ||
{ | ||
public const string VERSION = '2016.09'; | ||
} |
6 changes: 6 additions & 0 deletions
6
e2e/bug13425/plugins/oepnvMobilePlugin/lib/mobileService/2016.10/MobileServiceApi201610.php
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
<?php | ||
|
||
class MobileServiceApi201610 extends MobileServiceApi201609 | ||
{ | ||
public const string VERSION = '2016.10'; | ||
} |
9 changes: 9 additions & 0 deletions
9
e2e/bug13425/plugins/oepnvMobilePlugin/lib/mobileService/2016.12/MobileServiceApi201612.php
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
<?php | ||
|
||
use EosUptrade\TICKeos\Bundle\TICKeosMobileBundle\Exception\MobileServiceException; | ||
use EosUptrade\TICKeos\Plugins\SecurityFeatures\ColorFeature\ColorFeatureService; | ||
|
||
class MobileServiceApi201612 extends MobileServiceApi201610 | ||
{ | ||
public const string VERSION = '2016.12'; | ||
} |
8 changes: 8 additions & 0 deletions
8
e2e/bug13425/plugins/oepnvMobilePlugin/lib/mobileService/2017.03/MobileServiceApi201703.php
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
<?php | ||
|
||
use EosUptrade\TICKeos\Bundle\TICKeosMobileBundle\Exception\MobileServiceException; | ||
|
||
class MobileServiceApi201703 extends MobileServiceApi201612 | ||
{ | ||
public const string VERSION = '2017.03'; | ||
} |
6 changes: 6 additions & 0 deletions
6
e2e/bug13425/plugins/oepnvMobilePlugin/lib/mobileService/2017.04/MobileServiceApi201704.php
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
<?php | ||
|
||
class MobileServiceApi201704 extends MobileServiceApi201703 | ||
{ | ||
public const string VERSION = '2017.04'; | ||
} |
7 changes: 7 additions & 0 deletions
7
e2e/bug13425/plugins/oepnvMobilePlugin/lib/mobileService/2017.06/MobileServiceApi201706.php
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
<?php | ||
|
||
class MobileServiceApi201706 extends MobileServiceApi201704 | ||
{ | ||
public const string VERSION = '2017.06'; | ||
|
||
} |
6 changes: 6 additions & 0 deletions
6
e2e/bug13425/plugins/oepnvMobilePlugin/lib/mobileService/2017.07/MobileServiceApi201707.php
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
<?php | ||
|
||
class MobileServiceApi201707 extends MobileServiceApi201706 | ||
{ | ||
public const string VERSION = '2017.07'; | ||
} |
6 changes: 6 additions & 0 deletions
6
e2e/bug13425/plugins/oepnvMobilePlugin/lib/mobileService/2017.09/MobileServiceApi201709.php
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
<?php | ||
|
||
class MobileServiceApi201709 extends MobileServiceApi201707 | ||
{ | ||
public const string VERSION = '2017.09'; | ||
} |
7 changes: 7 additions & 0 deletions
7
e2e/bug13425/plugins/oepnvMobilePlugin/lib/mobileService/2017.10/MobileServiceApi201710.php
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
<?php | ||
|
||
class MobileServiceApi201710 extends MobileServiceApi201709 | ||
{ | ||
public const string VERSION = '2017.10'; | ||
|
||
} |
9 changes: 9 additions & 0 deletions
9
e2e/bug13425/plugins/oepnvMobilePlugin/lib/mobileService/2017.12/MobileServiceApi201712.php
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
<?php | ||
|
||
use EosUptrade\TICKeos\Bundle\TICKeosMobileBundle\Exception\MobileServiceException; | ||
|
||
class MobileServiceApi201712 extends MobileServiceApi201710 | ||
{ | ||
public const string VERSION = '2017.12'; | ||
|
||
} |
9 changes: 9 additions & 0 deletions
9
e2e/bug13425/plugins/oepnvMobilePlugin/lib/mobileService/2018.03/MobileServiceApi201803.php
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
<?php | ||
|
||
use EosUptrade\TICKeos\Bundle\TICKeosMobileBundle\Exception\MobileServiceException; | ||
|
||
class MobileServiceApi201803 extends MobileServiceApi201712 | ||
{ | ||
public const string VERSION = '2018.03'; | ||
|
||
} |
64 changes: 64 additions & 0 deletions
64
e2e/bug13425/plugins/oepnvMobilePlugin/lib/mobileService/2018.06/MobileServiceApi201806.php
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,64 @@ | ||
<?php | ||
|
||
use EosUptrade\TICKeos\Bundle\EtsPaymentFacadeClientBundle\Helper\BrowserType\BrowserTypeConfiguration; | ||
use EosUptrade\TICKeos\Bundle\TICKeosCoreBundle\Domain\AnonymousCustomerSessionHandler; | ||
use EosUptrade\TICKeos\Bundle\TICKeosMobileBundle\Domain\Authentication\CreateAccessToken; | ||
use EosUptrade\TICKeos\Bundle\TICKeosMobileBundle\Domain\Certificate\LegacyCertificateProvider; | ||
use EosUptrade\TICKeos\Bundle\TICKeosMobileBundle\Exception\MobileServiceException; | ||
use EosUptrade\TICKeos\Core\Domain\Customer\CustomerDeviceManager; | ||
use EosUptrade\TICKeos\Core\License\License; | ||
use EosUptrade\TICKeos\Core\Repository\CustomerDeviceRepository; | ||
use EosUptrade\TICKeos\Core\Repository\GenericRepository; | ||
use EosUptrade\TICKeos\Core\Repository\OrderProductRepository; | ||
use EosUptrade\TICKeos\Core\UseCase\Order\ClaimOrderProduct\ClaimOrderProduct; | ||
use EosUptrade\TICKeos\Core\UseCase\Order\ClaimOrderProduct\ClaimOrderProductException; | ||
use EosUptrade\TICKeos\Core\UseCase\Order\ClaimOrderProduct\ClaimOrderProductRequest; | ||
use EosUptrade\TICKeos\Library\TickeosContracts\Repository\CustomerRepository; | ||
use EosUptrade\TICKeos\MajorCustomer\Repository\CustomerToMajorCustomerRepository; | ||
use EosUptrade\TICKeos\Shop\Domain\Customer\CustomerDisabledByChecker; | ||
use Psr\Log\LoggerInterface; | ||
use Symfony\Component\Security\Core\Authorization\AuthorizationCheckerInterface; | ||
use Symfony\Contracts\Translation\TranslatorInterface; | ||
|
||
class MobileServiceApi201806 extends MobileServiceApi201803 | ||
{ | ||
public const string VERSION = '2018.06'; | ||
|
||
public function __construct( | ||
sfUser $user, | ||
AuthorizationCheckerInterface $authorizationChecker, | ||
LegacyCertificateProvider $certificateProvider, | ||
MobileServiceClient $client, | ||
AnonymousCustomerSessionHandler $anonymousCustomerSessionHandler, | ||
CustomerRepository $customerRepository, | ||
CustomerDisabledByChecker $customerDisabledByChecker, | ||
LoggerInterface $logger, | ||
?BrowserTypeConfiguration $browserTypeConfiguration, | ||
CustomerToMajorCustomerRepository $customerToMajorCustomerRepository, | ||
protected CustomerDeviceRepository $customerDeviceRepository, | ||
protected CustomerDeviceManager $customerDeviceManager, | ||
protected GenericRepository $genericRepository, | ||
protected CreateAccessToken $createAccessToken, | ||
protected TranslatorInterface $translator, | ||
protected ClaimOrderProduct $claimOrderProduct, | ||
protected OrderProductRepository $orderProductRepository, | ||
) { | ||
parent::__construct( | ||
$user, | ||
$authorizationChecker, | ||
$certificateProvider, | ||
$client, | ||
$anonymousCustomerSessionHandler, | ||
$customerRepository, | ||
$customerDisabledByChecker, | ||
$logger, | ||
$browserTypeConfiguration, | ||
$customerToMajorCustomerRepository, | ||
$customerDeviceRepository, | ||
$customerDeviceManager, | ||
$genericRepository | ||
); | ||
} | ||
|
||
|
||
} |
9 changes: 9 additions & 0 deletions
9
e2e/bug13425/plugins/oepnvMobilePlugin/lib/mobileService/2018.07/MobileServiceApi201807.php
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
<?php | ||
|
||
use EosUptrade\TICKeos\Core\License\License; | ||
|
||
class MobileServiceApi201807 extends \MobileServiceApi201806 | ||
{ | ||
public const string VERSION = '2018.07'; | ||
|
||
} |
8 changes: 8 additions & 0 deletions
8
e2e/bug13425/plugins/oepnvMobilePlugin/lib/mobileService/2018.09/MobileServiceApi201809.php
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
<?php | ||
|
||
class MobileServiceApi201809 extends \MobileServiceApi201807 | ||
{ | ||
public const string VERSION = '2018.09'; | ||
|
||
|
||
} |
10 changes: 10 additions & 0 deletions
10
e2e/bug13425/plugins/oepnvMobilePlugin/lib/mobileService/2018.10/MobileServiceApi201810.php
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
<?php | ||
|
||
use EosUptrade\TICKeos\Core\Model\Service\ProductServiceType; | ||
use EosUptrade\TICKeos\Core\Service\Product\TICKeos; | ||
|
||
class MobileServiceApi201810 extends \MobileServiceApi201809 | ||
{ | ||
public const string VERSION = '2018.10'; | ||
|
||
} |
6 changes: 6 additions & 0 deletions
6
e2e/bug13425/plugins/oepnvMobilePlugin/lib/mobileService/2018.12/MobileServiceApi201812.php
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
<?php | ||
|
||
class MobileServiceApi201812 extends \MobileServiceApi201810 | ||
{ | ||
public const string VERSION = '2018.12'; | ||
} |
9 changes: 9 additions & 0 deletions
9
e2e/bug13425/plugins/oepnvMobilePlugin/lib/mobileService/2019.01/MobileServiceApi201901.php
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
<?php | ||
|
||
class MobileServiceApi201901 extends MobileServiceApi201812 | ||
{ | ||
public const string VERSION = '2019.01'; | ||
|
||
|
||
|
||
} |
6 changes: 6 additions & 0 deletions
6
e2e/bug13425/plugins/oepnvMobilePlugin/lib/mobileService/2019.03/MobileServiceApi201903.php
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
<?php | ||
|
||
class MobileServiceApi201903 extends MobileServiceApi201901 | ||
{ | ||
public const string VERSION = '2019.03'; | ||
} |
7 changes: 7 additions & 0 deletions
7
e2e/bug13425/plugins/oepnvMobilePlugin/lib/mobileService/2019.04/MobileServiceApi201904.php
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
<?php | ||
|
||
class MobileServiceApi201904 extends MobileServiceApi201903 | ||
{ | ||
public const string VERSION = '2019.04'; | ||
|
||
} |
7 changes: 7 additions & 0 deletions
7
e2e/bug13425/plugins/oepnvMobilePlugin/lib/mobileService/2019.05/MobileServiceApi201905.php
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
<?php | ||
|
||
class MobileServiceApi201905 extends MobileServiceApi201904 | ||
{ | ||
public const string VERSION = '2019.05'; | ||
|
||
} |
80 changes: 80 additions & 0 deletions
80
e2e/bug13425/plugins/oepnvMobilePlugin/lib/mobileService/2019.06/MobileServiceApi201906.php
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,80 @@ | ||
<?php | ||
|
||
declare(strict_types=1); | ||
|
||
use Doctrine\ORM\EntityManagerInterface; | ||
use EosUptrade\TICKeos\Bundle\EtsPaymentFacadeClientBundle\Helper\BrowserType\BrowserTypeConfiguration; | ||
use EosUptrade\TICKeos\Bundle\OrderProcessBundle\Domain\ProcessLockService; | ||
use EosUptrade\TICKeos\Bundle\TICKeosCoreBundle\Domain\AnonymousCustomerSessionHandler; | ||
use EosUptrade\TICKeos\Bundle\TICKeosMobileBundle\Domain\Authentication\CreateAccessToken; | ||
use EosUptrade\TICKeos\Bundle\TICKeosMobileBundle\Domain\Certificate\LegacyCertificateProvider; | ||
use EosUptrade\TICKeos\Bundle\TICKeosMobileBundle\Event\V2019_06\FilterCartPriceRequestEvent; | ||
use EosUptrade\TICKeos\Core\Domain\Customer\CustomerDeviceManager; | ||
use EosUptrade\TICKeos\Core\Repository\CustomerDeviceRepository; | ||
use EosUptrade\TICKeos\Core\Repository\GenericRepository; | ||
use EosUptrade\TICKeos\Core\Repository\OrderProductRepository; | ||
use EosUptrade\TICKeos\Core\UseCase\Order\ClaimOrderProduct\ClaimOrderProduct; | ||
use EosUptrade\TICKeos\Library\TickeosContracts\Entity\Customer; | ||
use EosUptrade\TICKeos\Library\TickeosContracts\Repository\CustomerRepository; | ||
use EosUptrade\TICKeos\MajorCustomer\Domain\MandatoryFieldConfiguration\MandatoryFieldsChecker; | ||
use EosUptrade\TICKeos\MajorCustomer\Entity\MajorCustomerEmployeeMandatoryFieldsConfiguration; | ||
use EosUptrade\TICKeos\MajorCustomer\Repository\CustomerToMajorCustomerRepository; | ||
use EosUptrade\TICKeos\Mobile\Domain\Layout\AccountError\AccountErrorBuilder; | ||
use EosUptrade\TICKeos\Mobile\Domain\Layout\AccountField\AccountFieldBuilder; | ||
use EosUptrade\TICKeos\Mobile\Domain\Layout\AccountField\AccountFieldContentBuilder; | ||
use EosUptrade\TICKeos\Mobile\Domain\Layout\LayoutBlockBuilder; | ||
use EosUptrade\TICKeos\Shop\Domain\Customer\CustomerDisabledByChecker; | ||
use Psr\Log\LoggerInterface; | ||
use Symfony\Component\Security\Core\Authorization\AuthorizationCheckerInterface; | ||
use Symfony\Contracts\Translation\TranslatorInterface; | ||
|
||
class MobileServiceApi201906 extends MobileServiceApi201905 | ||
{ | ||
public const string VERSION = '2019.06'; | ||
|
||
private const string MAJOR_CUSTOMER_EMPLOYEE = 'major_customer_employee'; | ||
|
||
public function __construct( | ||
sfUser $user, | ||
AuthorizationCheckerInterface $authorizationChecker, | ||
LegacyCertificateProvider $certificateProvider, | ||
MobileServiceClient $client, | ||
AnonymousCustomerSessionHandler $anonymousCustomerSessionHandler, | ||
CustomerRepository $customerRepository, | ||
CustomerDisabledByChecker $customerDisabledByChecker, | ||
LoggerInterface $logger, | ||
?BrowserTypeConfiguration $browserTypeConfiguration, | ||
protected CustomerToMajorCustomerRepository $customerToMajorCustomerRepository, | ||
CustomerDeviceRepository $customerDeviceRepository, | ||
CustomerDeviceManager $customerDeviceManager, | ||
GenericRepository $genericRepository, | ||
CreateAccessToken $createAccessToken, | ||
protected TranslatorInterface $translator, | ||
ClaimOrderProduct $claimOrderProduct, | ||
OrderProductRepository $orderProductRepository, | ||
protected EntityManagerInterface $entityManager, | ||
protected MandatoryFieldsChecker $mandatoryFieldsChecker, | ||
ProcessLockService $processLockService, | ||
) { | ||
parent::__construct( | ||
$user, | ||
$authorizationChecker, | ||
$certificateProvider, | ||
$client, | ||
$anonymousCustomerSessionHandler, | ||
$customerRepository, | ||
$customerDisabledByChecker, | ||
$logger, | ||
$browserTypeConfiguration, | ||
$customerToMajorCustomerRepository, | ||
$customerDeviceRepository, | ||
$customerDeviceManager, | ||
$genericRepository, | ||
$createAccessToken, | ||
$translator, | ||
$claimOrderProduct, | ||
$orderProductRepository, | ||
); | ||
} | ||
|
||
} |
12 changes: 12 additions & 0 deletions
12
e2e/bug13425/plugins/oepnvMobilePlugin/lib/mobileService/3.8/MobileServiceApi38.php
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
<?php | ||
|
||
use EosUptrade\TICKeos\Bundle\TICKeosMobileBundle\Event\ManifestTickeosConnectServerFilterEvent; | ||
use EosUptrade\TICKeos\Bundle\TICKeosMobileBundle\Exception\MobileServiceException; | ||
use EosUptrade\TICKeos\Core\Domain\Customer\CustomerId; | ||
use EosUptrade\TICKeos\Core\Repository\GenericRepository; | ||
|
||
class MobileServiceApi38 extends MobileServiceApi | ||
{ | ||
public const string VERSION = '3.8'; | ||
|
||
} |
51 changes: 51 additions & 0 deletions
51
e2e/bug13425/plugins/oepnvMobilePlugin/lib/mobileService/3.9/MobileServiceApi39.php
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
<?php | ||
|
||
use EosUptrade\TICKeos\Bundle\EosConnectBundle\Domain\MobileAuthMapper; | ||
use EosUptrade\TICKeos\Bundle\EtsPaymentFacadeClientBundle\Helper\BrowserType\BrowserTypeConfiguration; | ||
use EosUptrade\TICKeos\Bundle\TICKeosCoreBundle\Domain\AnonymousCustomerSessionHandler; | ||
use EosUptrade\TICKeos\Bundle\TICKeosMobileBundle\Domain\Certificate\LegacyCertificateProvider; | ||
use EosUptrade\TICKeos\Bundle\TICKeosMobileBundle\Exception\MobileServiceException; | ||
use EosUptrade\TICKeos\Core\Domain\Customer\CustomerDeviceManager; | ||
use EosUptrade\TICKeos\Core\Domain\Customer\CustomerId; | ||
use EosUptrade\TICKeos\Core\Domain\Customer\DeviceNotSavedException; | ||
use EosUptrade\TICKeos\Core\Repository\CustomerDeviceRepository; | ||
use EosUptrade\TICKeos\Core\Repository\GenericRepository; | ||
use EosUptrade\TICKeos\Library\TickeosContracts\Repository\CustomerRepository; | ||
use EosUptrade\TICKeos\MajorCustomer\Repository\CustomerToMajorCustomerRepository; | ||
use EosUptrade\TICKeos\Shop\Domain\Customer\CustomerDisabledByChecker; | ||
use Psr\Log\LoggerInterface; | ||
use Symfony\Component\Security\Core\Authorization\AuthorizationCheckerInterface; | ||
|
||
class MobileServiceApi39 extends MobileServiceApi38 | ||
{ | ||
public const string VERSION = '3.9'; | ||
|
||
|
||
public function __construct( | ||
sfUser $user, | ||
AuthorizationCheckerInterface $authorizationChecker, | ||
LegacyCertificateProvider $certificateProvider, | ||
MobileServiceClient $client, | ||
AnonymousCustomerSessionHandler $anonymousCustomerSessionHandler, | ||
CustomerRepository $customerRepository, | ||
CustomerDisabledByChecker $customerDisabledByChecker, | ||
LoggerInterface $logger, | ||
?BrowserTypeConfiguration $browserTypeConfiguration, | ||
protected CustomerToMajorCustomerRepository $customerToMajorCustomerRepository, | ||
protected CustomerDeviceRepository $customerDeviceRepository, | ||
protected CustomerDeviceManager $customerDeviceManager, | ||
protected GenericRepository $genericRepository, | ||
) { | ||
parent::__construct( | ||
$user, | ||
$authorizationChecker, | ||
$certificateProvider, | ||
$client, | ||
$anonymousCustomerSessionHandler, | ||
$customerRepository, | ||
$customerDisabledByChecker, | ||
$logger, | ||
$browserTypeConfiguration | ||
); | ||
} | ||
} |
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I couldn't find where is this
timeout
command coming from?There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
its a linux command line tool, usually contained in stock installations.
brew install coreutils
installs it on macos