for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* This file is part of the Grido (https://github.com/o5/grido)
*
* Copyright (c) 2011 Petr Bugyík (http://petr.bugyik.cz)
* For the full copyright and license information, please view
* the file LICENSE.md that was distributed with this source code.
*/
namespace Grido;
* Helpers.
* @package Grido
* @author Josef Kříž <[email protected]>
class Helpers
{
* @param string $name
* @return string
public static function formatColumnName($name)
return str_replace('.', '__', $name);
}
public static function unformatColumnName($name)
return str_replace('__', '.', $name);