Skip to content

Commit 7b8d760

Browse files
Remove PHP 7.0 and style
1 parent f383c17 commit 7b8d760

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

.travis.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
language: php
22

33
php:
4-
- 7.0
54
- 7.1
65
- 7.2
76
- 7.3

CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,10 @@
22

33
All notable changes to `phpunit-watcher` will be documented in this file
44

5-
## 1.9.1 - 2019-03-25
5+
## 1.10.0 - 2019-07-19
66

77
- fix for deprecated symfony/process string construction
8+
- removed support for PHP 7.0
89

910
## 1.9.0 - 2019-03-25
1011

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
}
1717
],
1818
"require": {
19-
"php": "^7.0",
19+
"php": "^7.1",
2020
"clue/stdio-react": "^2.0",
2121
"jolicode/jolinotif": "^2.0",
2222
"symfony/console": "^3.0|^4.0",

src/Screens/Phpunit.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ public function registerListeners()
4747
case 'a':
4848
$this->options['phpunit']['arguments'] = '';
4949

50-
$this->terminal->displayScreen(new Phpunit($this->options));
50+
$this->terminal->displayScreen(new self($this->options));
5151
break;
5252
case 'g':
5353
$this->terminal->displayScreen(new FilterGroupName());

src/WatcherCommand.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ protected function execute(InputInterface $input, OutputInterface $output)
2323
{
2424
$options = $this->determineOptions($input);
2525

26-
list($watcher, $options) = WatcherFactory::create($options);
26+
[$watcher, $options] = WatcherFactory::create($options);
2727

2828
$this->displayOptions($options, $input, $output);
2929

0 commit comments

Comments
 (0)