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