for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace CodeZero\Localizer\Stores;
use Illuminate\Support\Facades\App;
class AppStore implements Store
{
/**
* Store the given locale.
*
* @param string $locale
* @return void
*/
public function store($locale)
App::setLocale($locale);
}