lithium\g11n\catalog\Adapter::read PHP Method

read() public method

Override this method in subclasses if you want the adapter to have read support. The method is expected to return null if the passed category is not supported.
public read ( string $category, string $locale, string $scope ) : null
$category string A category.
$locale string A locale identifier.
$scope string The scope for the current operation.
return null This currently does nothing.
    public function read($category, $locale, $scope)
    {
        return null;
    }