enshort namespaces

This commit is contained in:
yggverse 2024-07-21 20:25:09 +03:00
parent 2d7b3d1965
commit ee2f8ba3b1
21 changed files with 93 additions and 133 deletions

View file

@ -4,16 +4,18 @@ declare(strict_types=1);
namespace Yggverse\Yoda\Entity\Browser\Container\Page\Response;
use \Yggverse\Yoda\Entity\Browser\Container\Page\Response;
class Send extends \Yggverse\Yoda\Abstract\Entity\Button
{
// Dependencies
public \Yggverse\Yoda\Entity\Browser\Container\Page\Response $response;
public Response $response;
// Defaults
protected string $_label = 'Send';
public function __construct(
\Yggverse\Yoda\Entity\Browser\Container\Page\Response $response
Response $response
) {
// Use parent features
parent::__construct();