Files
trf_certest/vendor/laravel/prompts/src/Themes/Contracts/Scrolling.php
T
2025-03-28 08:52:46 +01:00

12 lines
204 B
PHP

<?php
namespace Laravel\Prompts\Themes\Contracts;
interface Scrolling
{
/**
* The number of lines to reserve outside of the scrollable area.
*/
public function reservedLines(): int;
}