Nextras\Orm\Mapper\Dbal\StorageReflection\CamelCaseStorageReflection::formatEntityForeignKey PHP Method

formatEntityForeignKey() protected method

protected formatEntityForeignKey ( $key )
    protected function formatEntityForeignKey($key)
    {
        if (substr($key, -2) === 'Id') {
            $key = substr($key, 0, -2);
        }
        return $this->formatEntityKey($key);
    }