Skip to content

Commit e55ddd6

Browse files
Remove Printer6
1 parent 952dd7e commit e55ddd6

File tree

6 files changed

+2
-88
lines changed

6 files changed

+2
-88
lines changed

.github/workflows/push.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ jobs:
99
fail-fast: false
1010
matrix:
1111
os: [ubuntu-latest, windows-latest, macos-latest]
12-
php-versions: ["7.3", "7.4"]
13-
phpunit-version: ["6", "7", "8", "9"]
12+
php-versions: ["7.3", "7.4", "8"]
13+
phpunit-version: ["7", "8", "9"]
1414
name: PHP ${{ matrix.php-versions }} Test on ${{ matrix.os }} (PHPUnit ${{ matrix.phpunit-version }})
1515
steps:
1616
- name: Checkout

src/Functions/helpers.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22

33
namespace mheap\GithubActionsReporter\Functions;
44

5-
use mheap\GithubActionsReporter\Printer6;
65
use mheap\GithubActionsReporter\Printer7;
76
use mheap\GithubActionsReporter\Printer8;
87
use mheap\GithubActionsReporter\Printer9;
@@ -20,7 +19,6 @@ function determinePrinter($version)
2019
{
2120
$versionMatrix = [
2221
// greater than equals, lower than equals, printer FQCN
23-
['6.0', '6.99.99', Printer6::class],
2422
['7.0', '7.99.99', Printer7::class],
2523
['8.0', '8.99.99', Printer8::class],
2624
['9.0', true, Printer9::class],

src/Printer6.php

Lines changed: 0 additions & 50 deletions
This file was deleted.

test/Unit/HelperFunctionTest.php

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
<?php
22

3-
use mheap\GithubActionsReporter\Printer6;
43
use mheap\GithubActionsReporter\Printer7;
54
use mheap\GithubActionsReporter\Printer8;
65
use mheap\GithubActionsReporter\Printer9;
@@ -42,11 +41,6 @@ public function getInputsForVersionSelection()
4241
'expected' => Printer7::class
4342
];
4443

45-
yield 'minor version 6.5' => [
46-
'version' => '6.5',
47-
'expected' => Printer6::class
48-
];
49-
5044
yield 'minor version 5' => [
5145
'version' => '5.0',
5246
'expected' => null

test/states-test.phpt

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
--TEST--
22
phpunit -c tests/_files/phpunit.xml tests/_files/PrinterStatesTest.php
3-
--SKIPIF--
4-
<?php if (version_compare(PHPUnit\Runner\Version::id(), '7.0.0', '>=') === false) echo 'skip'; ?>
53
--FILE--
64
<?php
75
$_SERVER['TERM'] = 'xterm';

test/statest-test-phpunit6.phpt

Lines changed: 0 additions & 26 deletions
This file was deleted.

0 commit comments

Comments
 (0)