for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace Doctrine\Inflector\Rules;
class Rule
{
/** @var string */
private $from;
private $to;
public function __construct(string $from, string $to)
$this->from = $from;
$this->to = $to;
}
public function getFrom() : string
return $this->from;
public function getTo() : string
return $this->to;