libraryloader.php 261 Bytes
<?php

namespace googleshopping\traits;

use \googleshopping\Googleshopping;

trait LibraryLoader {
    protected function loadLibrary($store_id) {
        $this->registry->set('googleshopping', new Googleshopping($this->registry, $store_id));
    }
}