Sequenzia/lib/Rails/I18n/Locales/AbstractLocales.php
2013-10-02 11:14:53 -05:00

13 lines
184 B
PHP
Executable File

<?php
namespace Rails\I18n\Locales;
abstract class AbstractLocales
{
protected $translations = [];
public function tr()
{
return $this->translations;
}
}