| 12345678910111213141516171819202122232425262728293031 | 
							- <?php
 
- /**
 
-  * CUD - CURSOR DOWN
 
-  * 
 
-  * CUD causes the active presentation position to be moved downwards
 
-  * in the presentation component by n line positions if the character
 
-  * path is horizontal, or by n character positions if the character
 
-  * path is vertical, where n equals the value of Pn.
 
-  */
 
- namespace Bramus\Ansi\ControlSequences\EscapeSequences;
 
- class CUD extends Base
 
- {
 
-     // This EscapeSequence has ParameterByte(s)
 
-     use \Bramus\Ansi\ControlSequences\Traits\HasParameterBytes;
 
-     /**
 
-      * CUD - CURSOR DOWN
 
-      * @param mixed   $parameterBytes The Parameter Bytes
 
-      */
 
-     public function __construct($parameterBytes = 1)
 
-     {
 
-         // Store the parameter bytes
 
-         $this->setParameterBytes($parameterBytes);
 
-         // Call Parent Constructor (which will store finalByte)
 
-         parent::__construct(
 
-             \Bramus\Ansi\ControlSequences\EscapeSequences\Enums\FinalByte::CUD
 
-         );
 
-     }
 
- }
 
 
  |