5bcbf79681da10da52c6af64219309ffbb192e26
[yaffs-website] / vendor / psy / psysh / src / Psy / Output / PassthruPager.php
1 <?php
2
3 /*
4  * This file is part of Psy Shell.
5  *
6  * (c) 2012-2017 Justin Hileman
7  *
8  * For the full copyright and license information, please view the LICENSE
9  * file that was distributed with this source code.
10  */
11
12 namespace Psy\Output;
13
14 use Symfony\Component\Console\Output\StreamOutput;
15
16 /**
17  * A passthrough pager is a no-op. It simply wraps a StreamOutput's stream and
18  * does nothing when the pager is closed.
19  */
20 class PassthruPager extends StreamOutput implements OutputPager
21 {
22     /**
23      * Constructor.
24      *
25      * @param StreamOutput $output
26      */
27     public function __construct(StreamOutput $output)
28     {
29         parent::__construct($output->getStream());
30     }
31
32     /**
33      * Close the current pager process.
34      */
35     public function close()
36     {
37         // nothing to do here
38     }
39 }