HOME


Mini Shell 1.0
Redirecting to https://devs.lapieza.net/iniciar-sesion Redirecting to https://devs.lapieza.net/iniciar-sesion.
DIR: /proc/thread-self/cwd/app/Classes/
Upload File :
Current File : //proc/thread-self/cwd/app/Classes/Component.php
<?php



namespace App\Classes;



class Component {

    public string $type;

    public array $parameters;



    public function __construct(string $type, array $parameters){

        $this->type = $type;

        foreach ($parameters as $parameter) {

            $this->parameters[] = new Parameter($parameter['type'], $parameter['text']);

        }


        
    }



}