DIR: /var/www/devs.lapieza.net/app/Classes/ |
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; } } } |