Backend\Modules\ContentBlocks\Command\CopyContentBlocksToOtherLocale::__construct PHP Method

__construct() public method

public __construct ( Locale $toLocale, Locale $fromLocale = null )
$toLocale Backend\Core\Language\Locale
$fromLocale Backend\Core\Language\Locale
    public function __construct(Locale $toLocale, Locale $fromLocale = null)
    {
        if ($fromLocale === null) {
            $fromLocale = Locale::workingLocale();
        }
        $this->toLocale = $toLocale;
        $this->fromLocale = $fromLocale;
        $this->extraIdMap = [];
    }
CopyContentBlocksToOtherLocale