Sequenzia/lib/Rails/I18n/Locales/AbstractLocales.php

13 lines
184 B
PHP
Raw Normal View History

2013-10-02 18:14:53 +02:00
<?php
namespace Rails\I18n\Locales;
abstract class AbstractLocales
{
protected $translations = [];
public function tr()
{
return $this->translations;
}
}