Security update for Core, with self-updated composer
[yaffs-website] / vendor / consolidation / annotated-command / tests / src / TestTerminal.php
1 <?php
2 namespace Consolidation\TestUtils;
3
4 class TestTerminal
5 {
6     protected $width = 0;
7
8     public function __construct($width)
9     {
10         $this->width = $width;
11     }
12
13     public function getWidth()
14     {
15         return $this->width;
16     }
17
18     public function setWidth($width)
19     {
20         $this->width = $width;
21     }
22 }