Skip to content

Commit a9d3785

Browse files
committed
added test
1 parent b556528 commit a9d3785

37 files changed

+3047
-0
lines changed

.github/workflows/e2e-tests.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -392,6 +392,9 @@ jobs:
392392
cd e2e/composer-version-config
393393
composer install
394394
../../bin/phpstan analyze test.php --level=0
395+
- script: |
396+
cd e2e/bug13425
397+
../../bin/phpstan analyze src/ plugins/
395398
396399
steps:
397400
- name: "Checkout"
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
<?php
2+
3+
class MobileServiceApi201607 extends MobileServiceApi39
4+
{
5+
public const string VERSION = '2016.07';
6+
}
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
<?php
2+
3+
use EosUptrade\TICKeos\Bundle\TICKeosMobileBundle\Exception\MobileServiceException;
4+
5+
class MobileServiceApi201609 extends MobileServiceApi201607
6+
{
7+
public const string VERSION = '2016.09';
8+
}
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
<?php
2+
3+
class MobileServiceApi201610 extends MobileServiceApi201609
4+
{
5+
public const string VERSION = '2016.10';
6+
}
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
<?php
2+
3+
use EosUptrade\TICKeos\Bundle\TICKeosMobileBundle\Exception\MobileServiceException;
4+
use EosUptrade\TICKeos\Plugins\SecurityFeatures\ColorFeature\ColorFeatureService;
5+
6+
class MobileServiceApi201612 extends MobileServiceApi201610
7+
{
8+
public const string VERSION = '2016.12';
9+
}
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
<?php
2+
3+
use EosUptrade\TICKeos\Bundle\TICKeosMobileBundle\Exception\MobileServiceException;
4+
5+
class MobileServiceApi201703 extends MobileServiceApi201612
6+
{
7+
public const string VERSION = '2017.03';
8+
}
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
<?php
2+
3+
class MobileServiceApi201704 extends MobileServiceApi201703
4+
{
5+
public const string VERSION = '2017.04';
6+
}
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
<?php
2+
3+
class MobileServiceApi201706 extends MobileServiceApi201704
4+
{
5+
public const string VERSION = '2017.06';
6+
7+
}
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
<?php
2+
3+
class MobileServiceApi201707 extends MobileServiceApi201706
4+
{
5+
public const string VERSION = '2017.07';
6+
}
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
<?php
2+
3+
class MobileServiceApi201709 extends MobileServiceApi201707
4+
{
5+
public const string VERSION = '2017.09';
6+
}

0 commit comments

Comments
 (0)