16 lines
170 B
Plaintext
16 lines
170 B
Plaintext
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace %NAMESPACE%;
|
|
|
|
class %CLASS%
|
|
{
|
|
public $xxx;
|
|
|
|
public function __construct($xxx)
|
|
{
|
|
$this->xxx = $xxx;
|
|
}
|
|
}
|