glastree_on_gitea

This commit is contained in:
2026-05-26 08:14:29 +02:00
commit 0bed099d05
9556 changed files with 1186307 additions and 0 deletions
+37
View File
@@ -0,0 +1,37 @@
<?php
namespace Laravel\Prompts;
class Title extends Prompt
{
public function __construct(public string $title)
{
//
}
/**
* Update the title of the terminal.
*/
public function prompt(): bool
{
$this->writeDirectly($this->renderTheme());
return true;
}
/**
* Update the title of the terminal.
*/
public function display(): void
{
$this->prompt();
}
/**
* Get the value of the prompt.
*/
public function value(): bool
{
return true;
}
}