DIR: /proc/thread-self/cwd/app/Classes/ |
Current File : //proc/thread-self/cwd/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; } } } |