php-yaoi/php-yaoi

View on GitHub
src/Command/UnnamedSymbol.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

namespace Yaoi\Command;


class UnnamedSymbol
{
    public $text;

    public function __construct($text)
    {
        $this->text = $text;
    }
}