Skip to content

Commit 03c371a

Browse files
committed
CS
1 parent 2b673eb commit 03c371a

File tree

4 files changed

+3
-5
lines changed

4 files changed

+3
-5
lines changed

src/Terminal/TerminalFactory.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@
77
use PhpSchool\Terminal\Terminal;
88
use PhpSchool\Terminal\UnixTerminal;
99

10-
1110
/**
1211
* @author Michael Woodward <[email protected]>
1312
*/

test/CliMenuTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ public function setUp()
4242

4343
$this->terminal->expects($this->any())
4444
->method('write')
45-
->will($this->returnCallback(function ($buffer){
45+
->will($this->returnCallback(function ($buffer) {
4646
$this->output->write($buffer);
4747
}));
4848
}

test/Dialogue/ConfirmTest.php

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,10 +39,9 @@ public function setUp()
3939

4040
$this->terminal->expects($this->any())
4141
->method('write')
42-
->will($this->returnCallback(function ($buffer){
42+
->will($this->returnCallback(function ($buffer) {
4343
$this->output->write($buffer);
4444
}));
45-
4645
}
4746

4847
public function testConfirmWithOddLengthConfirmAndButton() : void

test/Dialogue/FlashTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ public function setUp()
3939

4040
$this->terminal->expects($this->any())
4141
->method('write')
42-
->will($this->returnCallback(function ($buffer){
42+
->will($this->returnCallback(function ($buffer) {
4343
$this->output->write($buffer);
4444
}));
4545
}

0 commit comments

Comments
 (0)