| 1 | <?php |
||
| 29 | class CursorComponent extends ComponentAbstract implements CursorCMPTIF |
||
| 30 | { |
||
| 31 | |||
| 32 | /** |
||
| 33 | * Initialize Component |
||
| 34 | * |
||
| 35 | * {@inheritdoc} |
||
| 36 | * |
||
| 37 | * @return bool |
||
| 38 | */ |
||
| 39 | 3 | public function initializeComponent(): bool |
|
| 45 | |||
| 46 | /** |
||
| 47 | * Whether cursor is fuse-based. |
||
| 48 | * |
||
| 49 | * {@inheritdoc} |
||
| 50 | * |
||
| 51 | * @param bool $fuse |
||
| 52 | * @return CursorCMPTIF |
||
| 53 | */ |
||
| 54 | 1 | public function fuse(bool $fuse = false): CursorCMPTIF |
|
| 59 | |||
| 60 | /** |
||
| 61 | * fuseTimeout |
||
| 62 | * |
||
| 63 | * {@inheritdoc} |
||
| 64 | * |
||
| 65 | * @param int $timeout |
||
| 66 | * @return CursorCMPTIF |
||
| 67 | */ |
||
| 68 | 3 | public function fuseTimeout(int $timeout = 1500): CursorCMPTIF |
|
| 73 | } |