HOME


Mini Shell 1.0
La Pieza.DO | Todo lo que buscas!

Bienvenido de nuevo!

Acceso Cuenta Delivery
DIR: /var/www/devs.lapieza.net/app/Classes/
Upload File :
Current File : /var/www/devs.lapieza.net/app/Classes/Parameter.php
<?php



namespace App\Classes;



class Parameter {

    public string $type;

    public string $text;



    public function __construct(string $type, string $content){

        $this->type = $type;



        if($this->type == 'text'){

            $this->text = $content;

        }

    }

}