File "Word.php"
Full Path: /home/fundopuh/trader.fxex.org/vendor/doctrine/inflector/lib/Doctrine/Inflector/Rules/Word.php
File size: 294 bytes
MIME-type: text/x-php
Charset: utf-8
<?php
declare(strict_types=1);
namespace Doctrine\Inflector\Rules;
class Word
{
/** @var string */
private $word;
public function __construct(string $word)
{
$this->word = $word;
}
public function getWord(): string
{
return $this->word;
}
}