File tree Expand file tree Collapse file tree 4 files changed +3
-5
lines changed Expand file tree Collapse file tree 4 files changed +3
-5
lines changed Original file line number Diff line number Diff line change 7
7
use PhpSchool \Terminal \Terminal ;
8
8
use PhpSchool \Terminal \UnixTerminal ;
9
9
10
-
11
10
/**
12
11
* @author Michael Woodward <[email protected] >
13
12
*/
Original file line number Diff line number Diff line change @@ -42,7 +42,7 @@ public function setUp()
42
42
43
43
$ this ->terminal ->expects ($ this ->any ())
44
44
->method ('write ' )
45
- ->will ($ this ->returnCallback (function ($ buffer ){
45
+ ->will ($ this ->returnCallback (function ($ buffer ) {
46
46
$ this ->output ->write ($ buffer );
47
47
}));
48
48
}
Original file line number Diff line number Diff line change @@ -39,10 +39,9 @@ public function setUp()
39
39
40
40
$ this ->terminal ->expects ($ this ->any ())
41
41
->method ('write ' )
42
- ->will ($ this ->returnCallback (function ($ buffer ){
42
+ ->will ($ this ->returnCallback (function ($ buffer ) {
43
43
$ this ->output ->write ($ buffer );
44
44
}));
45
-
46
45
}
47
46
48
47
public function testConfirmWithOddLengthConfirmAndButton () : void
Original file line number Diff line number Diff line change @@ -39,7 +39,7 @@ public function setUp()
39
39
40
40
$ this ->terminal ->expects ($ this ->any ())
41
41
->method ('write ' )
42
- ->will ($ this ->returnCallback (function ($ buffer ){
42
+ ->will ($ this ->returnCallback (function ($ buffer ) {
43
43
$ this ->output ->write ($ buffer );
44
44
}));
45
45
}
You can’t perform that action at this time.
0 commit comments