File tree 4 files changed +13
-11
lines changed
src/Entities/ReactionType
4 files changed +13
-11
lines changed Original file line number Diff line number Diff line change @@ -70,11 +70,15 @@ jobs:
70
70
run : composer check-code
71
71
72
72
- name : Run test suite
73
- if : ${{ matrix.php != '8.1'}}
74
- run : composer test-cov
73
+ run : composer test
75
74
76
- - name : Run test suite (with coverage)
77
- if : ${{ matrix.php == '8.1'}}
78
- run : |
79
- composer test-cov
80
- composer test-cov-upload
75
+ # - name: Run test suite
76
+ # if: ${{ matrix.php != '8.1'}}
77
+ # run: composer test-cov
78
+
79
+ # - name: Run test suite (with coverage)
80
+ # if: ${{ matrix.php == '8.1'}}
81
+ # run: |
82
+ # wget https://scrutinizer-ci.com/ocular.phar
83
+ # composer test-cov
84
+ # composer test-cov-upload
Original file line number Diff line number Diff line change 64
64
" XDEBUG_MODE=coverage \" vendor/bin/phpunit\" --coverage-clover clover.xml"
65
65
],
66
66
"test-cov-upload" : [
67
- " wget https://scrutinizer-ci.com/ocular.phar && php ocular.phar code-coverage:upload --format=php-clover clover.xml"
67
+ " @ php ocular.phar code-coverage:upload --format=php-clover clover.xml"
68
68
]
69
69
},
70
70
"config" : {
Original file line number Diff line number Diff line change 2
2
3
3
namespace Longman \TelegramBot \Entities \ReactionType ;
4
4
5
- use Longman \TelegramBot \Entities \ChatMember \ReactionTypeNotImplemented ;
6
5
use Longman \TelegramBot \Entities \Entity ;
7
6
8
7
class Factory extends \Longman \TelegramBot \Entities \Factory
Original file line number Diff line number Diff line change 1
1
<?php
2
2
3
- namespace Longman \TelegramBot \Entities \ChatMember ;
3
+ namespace Longman \TelegramBot \Entities \ReactionType ;
4
4
5
5
use Longman \TelegramBot \Entities \Entity ;
6
- use Longman \TelegramBot \Entities \ReactionType \ReactionType ;
7
6
8
7
class ReactionTypeNotImplemented extends Entity implements ReactionType
9
8
{
You can’t perform that action at this time.
0 commit comments