File Manager Lite
Dir:
/home/codewavebd/public_html/vendor/doctrine/inflector/src/Rules
Upload
[..]
English/
Rename
Del
Esperanto/
Rename
Del
French/
Rename
Del
Italian/
Rename
Del
NorwegianBokmal/
Rename
Del
Portuguese/
Rename
Del
Ruleset.php (777 B)
Edit
Rename
Del
Spanish/
Rename
Del
Substitution.php (451 B)
Edit
Rename
Del
Turkish/
Rename
Del
Edit: Substitution.php
<?php declare(strict_types=1); namespace Doctrine\Inflector\Rules; final class Substitution { /** @var Word */ private $from; /** @var Word */ private $to; public function __construct(Word $from, Word $to) { $this->from = $from; $this->to = $to; } public function getFrom(): Word { return $this->from; } public function getTo(): Word { return $this->to; } }
Simpan