Skip to content

Commit

Permalink
Remove PHP 7.0 and style
Browse files Browse the repository at this point in the history
  • Loading branch information
rubenvanassche committed Jul 19, 2019
1 parent f383c17 commit 7b8d760
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
1 change: 0 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
language: php

php:
- 7.0
- 7.1
- 7.2
- 7.3
Expand Down
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,10 @@

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

## 1.9.1 - 2019-03-25
## 1.10.0 - 2019-07-19

- fix for deprecated symfony/process string construction
- removed support for PHP 7.0

## 1.9.0 - 2019-03-25

Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
}
],
"require": {
"php": "^7.0",
"php": "^7.1",
"clue/stdio-react": "^2.0",
"jolicode/jolinotif": "^2.0",
"symfony/console": "^3.0|^4.0",
Expand Down
2 changes: 1 addition & 1 deletion src/Screens/Phpunit.php
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ public function registerListeners()
case 'a':
$this->options['phpunit']['arguments'] = '';

$this->terminal->displayScreen(new Phpunit($this->options));
$this->terminal->displayScreen(new self($this->options));
break;
case 'g':
$this->terminal->displayScreen(new FilterGroupName());
Expand Down
2 changes: 1 addition & 1 deletion src/WatcherCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ protected function execute(InputInterface $input, OutputInterface $output)
{
$options = $this->determineOptions($input);

list($watcher, $options) = WatcherFactory::create($options);
[$watcher, $options] = WatcherFactory::create($options);

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

Expand Down

0 comments on commit 7b8d760

Please sign in to comment.