Phactory\Mongo\Inflector::addException PHP Метод

addException() публичный статический Метод

* Add an exception to the rules for inflection.
public static addException ( $singular, $plural )
$singular the singular form of this word
$plural the plurbal form of this word
    public static function addException($singular, $plural)
    {
        self::$_exceptions[] = array('singular' => $singular, 'plural' => $plural);
    }